next up previous contents
Next: Installing PostgreSQL Up: Creating a ''postgres'' user Previous: Macintosh   Contents

Linux

In order to create a new account named postgres, follow the instruction as below.

  1. Become root by using su command
  2. Create a group named postgres
  3. Create a user named postgres
  4. Set password for postgres

Here is how this might be done:

$ su -
# addgroup postgres
# adduser -g postgres
# passwd postgres



manabu 2010-11-14