diff -r 82375c14eb26 -r 24486ce4dea1 doc/book/en/C011-installation.en.txt --- a/doc/book/en/C011-installation.en.txt Mon Mar 30 12:50:01 2009 -0700 +++ b/doc/book/en/C011-installation.en.txt Mon Mar 30 19:38:25 2009 -0700 @@ -109,6 +109,11 @@ Postgres configuration ---------------------- +.. note:: + If you already have an existing cluster and postgres server + running you do not require to execute the initilization step + of your Postgres database. + * First you have to initialize the database Postgres with the command ``initdb``. :: @@ -125,15 +130,26 @@ $ chown username /path/to/pgsql -* Create a superuser for `CubicWeb` instance (**root**) :: - - createuser -s username +* Create a superuser for `CubicWeb` instance: :: + + $ su + $ su - postgres + $ createuser -s username - Initialize the password of the superuser you just created with - ``su - postgres`` and ``psql``. + Initialize the password of the superuser you just created for your + database: :: + + $ su + $ su - postgres + $ psql - This password will be asked to you later on where you will create an - instance with `cubicweb-ctl create` + And then execute de following query: :: + + ALTER USER username WITH PASSWORD `password` + + This login/password will be requested when you will create an + instance with `cubicweb-ctl create` to initialize the database of + your application. .. [XXX] Est-ce que ces etapes sont vraiment necessaires? sand : lors de l'installation de ma bdd cela n'a pas ete fait et il semble que tout aille bien. Doit etre verifie avec les experts.