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:
parent
7f9b0f5e60
commit
de82bc5734
|
@ -114,7 +114,7 @@ unix_socket_directories = '/var/pgsql_socket' # comma-separated list of direct
|
||||||
#and
|
#and
|
||||||
unix_socket_permissions = 0777 # begin with 0 to use octal notation
|
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 mkdir /var/pgsql_socket
|
||||||
sudo chmod 770 /var/pgsql_socket
|
sudo chmod 770 /var/pgsql_socket
|
||||||
|
|
Loading…
Reference in New Issue