Fixed some grammar and one other line in postgres example
| ... | ... |
@@ -96,7 +96,7 @@ uncomment ``listen_addresses`` so it is as follows: |
| 96 | 96 |
|
| 97 | 97 |
This PostgreSQL setup is for development only purposes. Refer |
| 98 | 98 |
to PostgreSQL documentation how to fine-tune these settings so that it |
| 99 |
- is enough secure. |
|
| 99 |
+ is secure enough. |
|
| 100 | 100 |
|
| 101 | 101 |
Exit. |
| 102 | 102 |
|
| ... | ... |
@@ -121,9 +121,9 @@ Finally, run PostgreSQL server via ``docker``. |
| 121 | 121 |
-D /var/lib/postgresql/9.3/main \ |
| 122 | 122 |
-c config_file=/etc/postgresql/9.3/main/postgresql.conf') |
| 123 | 123 |
|
| 124 |
-Connect the PostgreSQL server using ``psql`` (You will need postgres installed |
|
| 124 |
+Connect the PostgreSQL server using ``psql`` (You will need the postgresql client installed |
|
| 125 | 125 |
on the machine. For ubuntu, use something like |
| 126 |
-``sudo apt-get install postgresql``). |
|
| 126 |
+``sudo apt-get install postgresql-client``). |
|
| 127 | 127 |
|
| 128 | 128 |
.. code-block:: bash |
| 129 | 129 |
|