Intergrated test scripts with automake
[gnucomo.git] / README
1
2          Welcome to Gnucomo.
3   =====================================
4
5 Gnucomo is a computer monitoring system that enables tou to keep an
6 eye on your machines in a comprihensable manner and spot problems
7 before they occur. Gnucomo is not a sinlge application but rather a
8 database around which a collection of programs revolve.
9
10 Known problems
11 ==============
12
13 PostgreSQL authentication problem
14 ----------------------------------
15
16 With the default installation of PostgreSQL on RedHat 8.0, you will probably encounter an authentication problem when you try to use the Gnucomo web interface. The problem will look somewhat like this:
17
18 Warning: pg_connect() unable to connect to PostgreSQL server: FATAL 1: IDENT authentication failed for user "arjen"
19
20 Refer to PostgreSQL Administrator's guide, Chapter 4: Client Authentication.
21
22 You probably have this line in the /var/lib/pgsql/data/pg_hba.conf:
23
24    local   all     ident   sameuser
25
26 (I know RedHat 8.0 does this). You need to change this into:
27
28    local      all           password
29
30 This tells PostgreSQL to allow any UNIX user to log into the database
31 as any database user on a local socket, using his database password.