How to install and configure Postgresql in Centos
yum install postgresql postgresql-serverchkconfig postgresql onservice postgresql initdbservice postgresql startNow Postgresql has been installed in your box.From Windows client i need to connect with this postgresql server. For that i download and install pgAdminIII http://www.pgadmin.org/download/Before getting connect, we have to allow remote clients to get connection in the serverLogin to the postgresql boxsu - postgresvi /var/lib/pgsql/data/postgresql.confChange the line "listen_address='localhost'" to listen_address='*'Uncomment port 5432 max_connections=100Also we have to mention the client IP to allow/trust in postgresql servervi /var/lib/pgsql/data/pg_hba.conf host all all 192.168.1.0/24 md5
host all all 192.168.3.0/24 md5
Restart the service.Now i can connect to postgresql server from the windows client using the pgAdmin tool
No comments:
Post a Comment