WARNING: sql version 9.2, server version 11.0.Some psql features might not work. Type "help" for

时间:2024-03-13 12:41:21

简单地说就是,你确实已经安装了11.0版本的数据库,但是psql脚本却是来自旧版本,本例中为9.2。如果不处理这个警告,对数据库进行操作时,有一些psql的特性会不能工作,

比如修改密码是不会起作用的

解决办法

首先,我们查看psql的路径,结果为

which psql

然后,我们需要移除原有的路径,然后创建符号链接,创建新的路径,确保新的版本链接到默认的路径集。(需要使用root用户进行操作)

# mv /bin/psql    /bin/psql-bk

# ln -s /usr/pgsql-11/bin/psql   /bin/psql

WARNING: sql version 9.2, server version 11.0.Some psql features might not work. Type "help" for