[root@server ~]# /etc/init.d/postgresql initdb Initialisation de la base de données : [ OK ] [root@server ~]# /etc/init.d/postgresql start Démarrage du service postgresql : [ OK ] [root@server ~]# chkconfig postgresql on [root@server ~]# su - postgres -bash-4.1$ psql -c "alter user postgres with password 'secret'" ALTER ROLE -bash-4.1$ createuser sympa Shall the new role be a superuser? (y/n) n Shall the new role be allowed to create databases? (y/n) n Shall the new role be allowed to create more new roles? (y/n) n -bash-4.1$ [root@server ~]# su - postgres -bash-4.1$ psql -c "alter user sympa with password 'secret'" ALTER ROLE -bash-4.1$ psql -c "create database sympa" CREATE DATABASE -bash-4.1$ psql -c "grant all on database sympa to sympa" GRANT -bash-4.1$ [root@server ~]# psql -U sympa -d sympa < /usr/share/sympa/bin/create_db.Pg Mot de passe pour l'utilisateur sympa : ... [root@server ~]# chown -R sympa:sympa /etc/sympa/ [root@server ~]# sympa.pl --upgrade info Configuration file read, default log level 4 debug3 Upgrade::probe_db() List::probe_db() debug2 List::db_connect() List::db_connect debug2 SQLSource::connect() Connected to Database sympa debug3 List::db_connect() Connected to Database sympa ...