PostgreSQL server listener settings and Client Connection Methods

Source: Internet
Author: User
Tags unix domain socket

Background:

The PostgreSQL server runs on Redhat Linux and the IP address is 192.168.230.128.

The client is installed on Windows XP with the IP address 192.168.230.1

Configuration method:

1. Modify the/opt/PostgreSQL/data/PostgreSQL. conf file on the server, and set

# Change listen_address = 'localhost' to listen_address = '*'

2. Modify the/opt/PostgreSQL/data/gp_cmd.conf file.

Add the Client IP address as follows. Pay attention to the last line:

# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD# "local" is for Unix domain socket connections onlylocal   all         all                               trust# IPv4 local connections:host    all         all         127.0.0.1/32          trust# IPv6 local connections:host    all         all         ::1/128               trust#kevin add# IPv4 local connections:host    all         all         192.168.230.1/32          trust

 

3. Restart the PG Service

[postgres@localhost data]$ pg_ctl restartwaiting for server to shut down....LOG:  received smart shutdown requestLOG:  autovacuum launcher shutting downLOG:  shutting downLOG:  database system is shut down doneserver stoppedserver starting[postgres@localhost data]$ LOG:  database system was shut down at 2011-07-09 14:54:29 CSTLOG:  autovacuum launcher startedLOG:  database system is ready to accept connections[postgres@localhost data]$

4. Use the client to connect. The configuration is as follows:

5. Click "OK" to connect. After the connection is successful, it is as follows:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.