From 8291d509c234779dff081ab579b6ff30358e7501 Mon Sep 17 00:00:00 2001 From: Thatcher Peskens Date: Thu, 28 Nov 2013 17:19:26 -0800 Subject: [PATCH] Fixed some grammar and one other line about needing the postgresql-client for connecting to the service. --- docs/sources/examples/postgresql_service.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/examples/postgresql_service.rst b/docs/sources/examples/postgresql_service.rst index 82ca8b59ca..2b57853362 100644 --- a/docs/sources/examples/postgresql_service.rst +++ b/docs/sources/examples/postgresql_service.rst @@ -96,7 +96,7 @@ uncomment ``listen_addresses`` so it is as follows: This PostgreSQL setup is for development only purposes. Refer to PostgreSQL documentation how to fine-tune these settings so that it - is enough secure. + is secure enough. Exit. @@ -121,9 +121,9 @@ Finally, run PostgreSQL server via ``docker``. -D /var/lib/postgresql/9.3/main \ -c config_file=/etc/postgresql/9.3/main/postgresql.conf') -Connect the PostgreSQL server using ``psql`` (You will need postgres installed +Connect the PostgreSQL server using ``psql`` (You will need the postgresql client installed on the machine. For ubuntu, use something like -``sudo apt-get install postgresql``). +``sudo apt-get install postgresql-client``). .. code-block:: bash