getting a database error on a debian linux server setup..
"error while loading shared libraries:lib.pq.so"
anyone know the problem
Is this the first setup of the MySQL server? It sounds to me (although I should say I am not a Linux expert) like you've custom-compiled the MySQL application and are missing the dependancy which lib.pq.so is a part of, which at a guess, would be that you've compiled it with postegreSQL support but not installed the necessary dependency.
server version 0.5d initializing...
Warning: not going daemon due to the -nd or -generate switch
Changing directory to /lot...
Reading configuration from me_svr.conf
The server configuration tuples were read successfully from me_svr.conf
Connecting to the database...
Connection to the database dbse failed - Reason = could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
!!!
server version 0.5d initializing...
Warning: not going daemon due to the -nd or -generate switch
Changing directory to /lot...
Reading configuration from me_svr.conf
The server configuration tuples were read successfully from me_svr.conf
Connecting to the database...
Connection to the database dbse failed - Reason = could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
!!!
Seems like you've configured it to use ports instead of sockets, so make sure that you haven't got a firewall like iptables running and preventing TCP/UDP connections to port 5432, or configure MySQL to use sockets instead and save yourself some hassle.
Comment