In Linux, You may find file at location below,
For exact location of "postgresql.conf" file, run the below command in psql command prompt.
Open the file and search for "listen_addresses" and set listen_addresses parameter to,
It will be located in several directory, depending on how postgresql is installed
In Linux, You may find file at location below,
If you want PostgreSQL to accept incoming connection from any IP address then add entry like below,
If you want PostgreSQL to accept incoming connection from particular IP address, say 192.168.82.2 then add entry in pg_hba.conf file like below,
After the changes are done, you have to reload the configuration as a superuser. run below command,
Done.
If PostgreSQL is still not accepting remote connection then try restarting the PostgreSQL service like below.
In Linux, If your PostgreSQL service name is "postgresql" then execute below command
In Windows, You can find service at
- /var/lib/pgsql/data/
- /etc/postgresql/9.1/main/
- C:/ProgramData/PostgreSQL/9.3/postgresql.conf
For exact location of "postgresql.conf" file, run the below command in psql command prompt.
1 | SHOW config_file; |
1 | listen_addresses = '*' |
pg_hba.conf
It will be located in several directory, depending on how postgresql is installed
In Linux, You may find file at location below,
- /home,
- /var/lib/pgsql,
- /var/lib/postgresql/[version]/,
- /opt/postgres/
- /etc/postgresql/[version]/main/
- C:/ProgramData/PostgreSQL/9.3/pg_hba.conf
1 | SHOW hba_file; |
If you want PostgreSQL to accept incoming connection from any IP address then add entry like below,
1 | host all all 0.0 . 0.0 / 0 md5 |
If you want PostgreSQL to accept incoming connection from particular IP address, say 192.168.82.2 then add entry in pg_hba.conf file like below,
1 | host all all 192.168 . 82.2 / 24 md5 |
Reload Configuration
After the changes are done, you have to reload the configuration as a superuser. run below command,
1 | SELECT pg_reload_conf(); |
If PostgreSQL is still not accepting remote connection then try restarting the PostgreSQL service like below.
In Linux, If your PostgreSQL service name is "postgresql" then execute below command
1 | service postgresql restart |
1 2 | Start Menu ---> Search "Run" ---> Type "Services.msc" ---> Search "PosgreSQL" ---> Right click and select Restart Service. |
Explain SQL Injection with example?
When to use Builder design pattern
How Recursion works internally with example
Difference between process and thread
Burning Rope Puzzle - Measure 45 Minutes
Union and Intersection of Two Sorted Arrays
Merge two sorted arrays in Java
Enjoy !!!!
If you find any issue in post or face any error while implementing, Please comment.