Correct folder for pgsql socket

The phrase that asks user to create `/var/pgsql` should refer to `/var/pgsql_socket` instead.
This commit is contained in:
Panayotis Matsinopoulos 2017-10-18 09:29:21 +01:00 committed by GitHub
parent 7f9b0f5e60
commit de82bc5734

View File

@ -114,7 +114,7 @@ unix_socket_directories = '/var/pgsql_socket' # comma-separated list of direct
#and
unix_socket_permissions = 0777 # begin with 0 to use octal notation
```
Then create the '/var/pgsql/' folder and set up the appropriate permission in your bash (this requires admin access)
Then create the '/var/pgsql_socket/' folder and set up the appropriate permission in your bash (this requires admin access)
```
sudo mkdir /var/pgsql_socket
sudo chmod 770 /var/pgsql_socket