我要将数据库从10.4升级到11.3,但是在使用pg_upgrade进行检查时,出现以下错误:
could not load library "$libdir/uuid-ossp": ERROR: could not access file "$libdir/uuid-ossp": No such file or directory
could not load library "$libdir/postgres_fdw": ERROR: could not access file "$libdir/postgres_fdw": No such file or directory
我正在使用CentOS 7,并查看是否需要首先创建扩展,所以尝试了以下操作并出现以下错误:
postgres=# CREATE EXTENSION postgres_fdw;
ERROR: could not open extension control file "/pgapp/postgresql/11.3/share/extension/postgres_fdw.control": No such file or directory
因此,当我执行postgres页面上记录的yum安装时,似乎未加载FDW二进制文件。有没有办法单独安装这些文件,或者有别的办法使它们正常工作,以便我可以完成升级?