Q: How do I give myself admin access to X? |
A: Run the cservice.addme.sql script in the doc/ directory. Eg: psql <databasename> <cservice.addme.sql |
Q: Whats the full command to start X? |
A: After installation, the binary is contained in the gnuworld/bin directory. If you don't want to see debug output, the best way to run gnuworld is: ./gnuworld -c -f GNUWorld.conf >/dev/null 2>1 & |
Q: I get this error: PostgreSQL error message: connectDBStart() -- connect() failed: Connection refused |
A: Make sure you are starting the PostgreSQL server with the -i parameter (To listen on TCP sockets). |
Q: I get this error: checking for libpq++.h... configure: error: Unable to find PostGreSQL |
A: Are you sure you have installed PostgreSQL? It can be downloaded from http://www.postgresql.org. Also, ensure you read the PostgreSQL documentation and add the configuration switch --with-CXX to install the PostgreSQL C++ API. |