Subject Re: [firebird-support] cant connect
Author Helen Borrie
At 05:00 AM 6/11/2003 +0000, you wrote:
>Hello i am Luis Amato from argentina i am new in Linux and Firebird too.
>I have just instaled redhat 9 + firebird 1.5rc6
>But i cant connect
>XINETD ok
>netstat -an its ok 3050 0.0.0.0 somthing is listening here - ok

Yes - this is Classic server. xinetd is listening for client requests to
attach to a server process. One fb_inet_server process will be started for
each successful connection to a database. If there are no clients
connected to any databases, there will be no fb_inet_server instances running.

>but
>isql localhost
>cant connect

localhost is the name of the local loopback server. isql must connect to a
*database*.

bin]$ ./isql /opt/database/mydata.fdb -user sysdba -password mypasswd
SQL>
or

bin]$ ./isql -user sysdba -password mypasswd
Use CREATE or CONNECT to connect to a database
SQL>


>i dont know whats happend
>when i start the srver manuali /usr/loca/firebird/bin/fb_inet....
>for a moment is in memory ( ps - aux) but then it disapears

If there is no client attached, then there will be no fb_inet_server
process running.

Just make a client connection to a database.
Then do ps -aux
You should then see one (or maybe two) instances of fb_inet_server running.

Disconnect your client.
Do ps -aux again. Now, the processes have gone.

helen