Subject Re: [firebird-support] Firebird V1.5 RC6 on SUSE 8.2
Author Helen Borrie
At 04:22 AM 4/10/2003 +0000, you wrote:
>Hi,
>
>I have a new fresh installation on Firebird Classic Server V1.5 RC6 on
>SUSE 8.2. thing look good, I can connect my database,
>
>Question is how can i restart the Firebird Classic Server using command
>without have to restart the OS?
>
>I am new in Linux.

For Classic, you don't have to "start the server" at all. When a client
attaches, the xinetd service starts an instance of the fb_inet_server
process automatically. When the client disconnects, the service stops that
process.

You can look to see whether any server instances are running, using this
command in the bash shell:

ps -aux | grep fb_inet_server

You should see one line of output for each instance that is running.

heLen