Typically, the DBMS is started and terminated by using common startup and kill scripts. But SysAdmins can also gracefully shut down both the dataserver and backup servers via the command line. Here is a run.
# isql –Usa –Ppassword
1> shutdown SYB_BACKUP
2> go
1> shutdown
2> go
If you can not shutdown the dataserver by the aforementioned methods, you might have to employ brute force: the kill -9 command. But note, this should only be performed in an emergency.
# ps –ef | grep backupserver
# kill -9 PID
# ps –ef | grep dataserver
# kill -9 PID
No comments:
Post a Comment