setting up postgresql

<pre>Install PostgreSQL
$ sudo apt-get install postgresql-8.4
Reset the password of the postgres user
$ sudo su postgres -c psql
postgres=# ALTER USER postgres with PASSWORD 'password';
postgres=# \q
$ sudo passwd postgres


Comments

Popular Posts