程序员人生 网站导航

解决不能连接远程postgresql

栏目:数据库应用时间:2014-12-18 08:12:16

    在远程服务器上安装了postgresql,用 pgAdmin添加服务器始终不行。

   解决办法:

     在远程的postgresql数据库上的pg_hba.conf中添加 host  all  all   0.0.0.0/0   trust

     并保证postgresql.conf 中参数设置为listen_addresses = '*'  

   修改终了后重启:

    /bea/PostgreSQL/9.3/bin/pg_ctl  stop

    /bea/PostgreSQL/9.3/bin/pg_ctl  start 

    启动进程中如果报,pg_ctl: no database directory specified and environment variable PGDATA unset  则设置下环境变量

    PGDATA=/bea/PostgreSQL/9.3/data
    export PGDATA  

    如果报CST LOG:  could not create IPv6 socket: 协议不支持的地址族,疏忽,不影响连接

  


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐