From 6367a9813447e98874b11db2b77f98d61c7d7d39 Mon Sep 17 00:00:00 2001 From: kevgliss Date: Fri, 28 Apr 2017 15:31:08 -0700 Subject: [PATCH] Creating a user named 'lemur' in postgres (#773) Creating a user named 'lemur' in postgres --- docs/quickstart/index.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/quickstart/index.rst b/docs/quickstart/index.rst index 9a16704d..10840e48 100644 --- a/docs/quickstart/index.rst +++ b/docs/quickstart/index.rst @@ -151,10 +151,9 @@ First, set a password for the postgres user. For this guide, we will use ``lemu .. code-block:: bash $ sudo -u postgres -i - # \password postgres - Enter new password: lemur - Enter it again: lemur - + $ psql + postgres=# CREATE USER lemur WITH PASSWORD 'lemur'; + Once successful, type CTRL-D to exit the Postgres shell. Next, we will create our new database: