forked from ooici/coi-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.postgres_setup
37 lines (28 loc) · 1.08 KB
/
README.postgres_setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
If you are running the OOI system in a custom environment or on a mac,
it is required that postgres be correctly configured.
as user postgres:
echo "drop user ion;" | psql
createuser -s ion
echo "create database ion;" | psql
echo "grant all on database ion to ion;" | psql
echo "alter user ion with password 'ion';" | psql
This will create a superuser postgress account called ion with password ion.
It is strongly reccomended you change the password to something much better.
You can test that you have postgres correctly configured by returning to your
own user account and running:
psql -U ion -h localhost -p 5432
<enter the password you used above>
You should see something similar to:
psql (9.3.2)
Type "help" for help.
ion=>
In order to configure coi-services to know the database connection details,
create a file in coi-services/res/config/pyon.local.yml containing:
system:
name: your_favorite_name
server:
postgresql:
username: ion
password: ion
admin_username: ion
admin_password: ion