Install on postgresql:

Create a user database on your postgresql server.
Here we create a user "rserv" and a database "ratbox_services" on a debian system:

# su - postgres
$ psql
postgres=# CREATE USER rserv WITH ENCRYPTED PASSWORD 'password' NOCREATEDB NOCREATEROLE NOCREATEUSER;
postgres=# CREATE DATABASE ratbox_services WITH OWNER=rserv;
postgres=# \q

$ psql -h localhost -U rserv -d ratbox_services
postgres=# \include /usr/share/ratbox-services/lib/schema-pgsql.sql
postgres=# \q

