zoukankan      html  css  js  c++  java
  • 在linux上装 postgresql 在 windows或 linux 连不上的问题的解决方法

    PostgreSQL服务端运行在Linux上,客户端安装在Windows上或linux上,使用navicat 连接不上,需要修改服务端配置

    配置方法:

    1. 修改服务端/etc/postgresql/9.3/main/postgresql.conf文件,将
    #listen_address='localhost'改成
    listen_address='*' (postgresql.conf这个文件改的是 去掉了#号 把localhost改成了*)

    2. 修改/opt/postgresql/data/gp_hba.conf文件

    在其中增加客户端的ip,如下,注意最后一行:
    # TYPE DATABASE USER CIDR-ADDRESS METHOD
    # "local" is for Unix domain socket connections only
    local all all trust
    # IPv4 local connections:
    host all all 127.0.0.1/32 trust
    # IPv6 local connections:
    host all all ::1/128 trust


    # IPv4 local connections:
    host all all 192.168.201.114/32 trust(或者改为host all all 0.0.0.0/0 trust,允许所有ip连接
    (gp_hba.conf这个文件改的是在最下面加了 上面这两句话! )

    3.重启PG服务
    [postgres@localhost data]$ /etc/init.d/postgresql restart

    4. 现在使用客户端连接就成功了

  • 相关阅读:
    交换两个变量的值的若干种方法
    排序算法之冒泡排序
    JAVA宇宙无敌复习资料
    HTML中Float和元素定位
    HTML盒子模型
    HTML表单
    HTML中Css补充资料
    HTML中Css详细介绍
    HTML表格及框架介绍
    HTML网页的基本结构及基本功能
  • 原文地址:https://www.cnblogs.com/ypf1989/p/6180213.html
Copyright © 2011-2022 走看看