reorganize docs

This commit is contained in:
jeff
2015-08-22 19:52:31 -04:00
parent 88e6b2b4d0
commit 1e5ff5bba9
3 changed files with 1 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
Postgres on Debian:
# install
apt-get install postgresql postgresql-client
Setting up postgres (as root)
# become postgres user
su postgres
# spawn postgres admin shell
psql
You'll get a prompt, enter the following:
CREATE ROLE srnduser WITH LOGIN PASSWORD 'srndpassword';
CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnduser;
\q
Change the username and password as desired.