Skip to content

Commit

Permalink
Update configure-database.md
Browse files Browse the repository at this point in the history
  • Loading branch information
onsails committed Dec 8, 2015
1 parent 2d6d578 commit 4fe18e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/server/configure-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Open-Source Actor Server edition uses PostgreSQL Database. Other databases like
If you have [PostgreSQL installed](install-psql.md), you need to create a database and user with superuser privilegies:

```
sudo -u postgres createuser -W --superuser <user>
sudo -u postgres createuser --superuser <user>
sudo -u postgres psql postgres
\password <user>
\q
sudo -u postgres createdb <dbname> -O <user>
```

0 comments on commit 4fe18e6

Please sign in to comment.