Created
March 17, 2010 02:32
-
-
Save ericboehs/334817 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo su - | |
| echo PGDATA=/var/lib/pgsql/data >> /etc/sysconfig/pgsql/postgresql # Specify where the databases are stored | |
| service postgresql initdb # Initialize the database | |
| chkconfig postgresql on # Set postgresql to start up on boot | |
| service postgresql start # Start postgresql service | |
| exit # Drop out of root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment