Does killing fbserver process on Linux do any harm?


Short answer: No, if you use Firebird 2

In previous Firebird versions (1.x) the only way to safely shut the SuperServer down was to use fbmgr/ibmgr program like this:

/opt/firebird/bin/fbmgr -shut -user sysdba -pass ******

Since this requires SYSDBA password (even with root account) to be stored in system startup/shutdown scripts in plain text, an alternative had to be found. Standard POSIX signal handling was added in Firebird 2, and sending signals 2 (SIGINT) and 15 (SIGTERM) to Firebird server shuts it down cleanly. So, it is safe to run...

# killall fbserver

...to stop the server (killall sends SIGTERM by default). If server process is 'stuck' for some reason, it might not handle those signals, and the only way to kill it is with SIGKILL (9), which is forced kill without any cleanup. You should avoid this if possible:

# killall -9 fbserver


Do you find this FAQ incorrect or incomplete? Please e-mail us what needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird databases), before it enters the main FAQ database. If you desire so, the changes will be credited to your name. To learn more, visit our add content page.



All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.


Links   Firebird   News   FlameRobin   Powered by FB: Home Inventory   Euchre  
Add content   About  

Categories
 Newbies
 SQL
 Installation and setup
 Backup and restore
 Performance
 Security
 Connectivity and API
 HOWTOs
 Errors and error codes
 Miscellaneous