Skip to content

LexDbPsqlInitialize

BenjaminWaldron edited this page Apr 12, 2005 · 16 revisions

HOW TO initialize PostgreSQL server

Create User Accounts

  • Ensure there exists a database user postgres with superuser privileges.

  • As the superuser, create a database user lexdb who will manage the database:

    • {{{ $ createuser -U postgres --createdb --no-adduser lexdb

CREATE USER}}}

  • [Optional] If you wish to use password authentication add the -P option.
  • As the superuser, create a user account for yourself (substitute your shell login for USERNAME below):

    • {{{ $ createuser -U postgres --no-createdb --no-adduser USERNAME

CREATE USER}}}

  • [Optional] If you wish to use password authentication add the -P option.

Configure Access Privileges

PostgreSQL server running on local machine

local all all trust host all all 127.0.0.1/32 trust host all all ::1/128 trust}}}

  • [Optional] If you wish to use password authentication replace trust with md5.
  • On a PostgreSQL 7 server, TCP/IP must be enabled. Uncomment the line for TCP/IP in your postgresql.conf file so that it reads:

     tcpip_socket = true

PostgreSQL server on remote machine

  • Allow remote access to the server by adding lines of the following form to your pg_hba.conf file (replace IP_ADDRESS with the actual numbers):

    • host    all         all         IP_ADDRESS/32          md5

    • You should require password authentication for remote access.

  • On a PostgreSQL 7 server, TCP/IP must be enabled. Uncomment the line for TCP/IP in the postgresql.conf file so that it reads:

    • tcpip_socket = true
  • On a PostgreSQL 8 server, remote machines will not be able to connect unless you modify listen_addresses in the postgresql.conf file. (The value takes the form of a comma-separated list of host names and/or numeric IP addresses.)

Clone this wiki locally