postgresql修改完端口后直接psql连接数据库报错的解决
今天修改pg的端口号port改成5435后重启完数据库的时候直接psql进库的时候进不去
[postgres@node2data]$psql psql:couldnotconnecttoserver:Nosuchfileordirectory Istheserverrunninglocallyandaccepting connectionsonUnixdomainsocket"/tmp/.s.PGSQL.5432
这时,进数据库有两种方式
1、psql后面加上端口号
[postgres@node2data]$psql-p5435 psql(9.6.1) Type"help"forhelp. postgres=#
2、在环境变量/home/postgres/.bash_profile中加上一句
exportPGPORT=5435
然后
[postgres@node2~]$source~/.bash_profile [postgres@node2~]$psql psql(9.6.1) Type"help"forhelp. postgres=#
这样就可以直接进库了
补充:psql不是默认端口时如何连接postgresql
psql不是默认端口时如何连接postgresql
[stork@instance-609xznsopgsql]$/usr/pgsql-11/bin/psqlc3_data-p5432 couldnotchangedirectoryto“/var/lib/pgsql”:Permissiondenied Passwordforuserstork: psql(11.5) Type“help”forhelp. c3_data=>
自己指定端口就可以了
/usr/pgsql-11/bin/psqlxxdatabase-p端口号
以上为个人经验,希望能给大家一个参考,也希望大家多多支持毛票票。如有错误或未考虑完全的地方,望不吝赐教。