This repository was archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 619
Terminal
viveksengupta edited this page Aug 17, 2015
·
16 revisions
## Setup Data Directory
initdb ./data
cp ../postgresql.conf ./data [Optional]
## Start the Peloton server
pg_ctl -D ./data start
## Create a default user
createuser -s -r postgres
## Connect to the server
psql postgres
help
## Stop the server
pg_ctl -D ./data stop