localhost地址到Ip地址

我是用的是postgresql 8.3.4-1
默认情况下,postgresql是不支持按照ip地址访问的
如下修改就可以了
1。postgresql.conf中listen_addresses='*'        
   
  2。pg_hba.conf加一行host         all                   all                   127.0.0.1/0

参考

http://topic.csdn.net/t/20050411/23/3928058.html

你可能感兴趣的:(html,.net,PostgreSQL)