简体   繁体   English

Postgis Extension安装PostgreSQL

[英]Postgis Extension install PostgreSQL

When I try to enable PostGis extension on my database I receive the following: 当我尝试在数据库上启用PostGis扩展名时,收到以下消息:

postgis=# CREATE EXTENSION postgis;
ERROR:  could not load library "/usr/pgsql-9.3/lib/rtpostgis-2.1.so": libhdf5.so.6: cannot open shared object file: No such file or directory

I used find -name to find the files: 我用find -name查找文件:

[root@digihaul3-pc /]# find -name rtpostgis-2.1.so
./usr/pgsql-9.3/lib/rtpostgis-2.1.so

[root@digihaul3-pc /]# find -name libhdf5.so.6
./usr/lib64/mpich2/lib/libhdf5.so.6
./usr/pgsql-9.3/lib/libhdf5.so.6
./usr/lib/mpich2/lib/libhdf5.so.6

Credit to Thinking Monkey @ on this post 归因于此帖子上的Thinking Monkey @

it is for fordora 15. But i tried everything else and this actually fixed my issue and allowed me to install the postgis extentions. 它是供fordora 15使用的。但是我尝试了其他所有方法,这实际上解决了我的问题,并允许我安装postgis扩展。 Doesn't take long to install. 安装时间不长。

Thinking Monkeys Post: 猴子的想法:

Checked for whether /etc/ld.so.conf has a reference to the path /usr/lib64/mpich2/lib.

by doing  ldconfig -p | grep libhdf5.

Which did not output anything.

On checking that /etc/ld.so.conf had  include ld.so.conf.d/*.conf.

Checked for the files in directory ld.so.conf.d. One of the conf file in include ld.so.conf.d was /etc/ld.so.conf.d/atlas-x8664.conf which contained /usr/lib64/atlas.

So I,

    created a file called gdal.conf in the directory ld.so.conf.d.
    Added the string /usr/lib64/mpich2/lib to the file.
    Ran ldconfig.
    Now, ldconfig -p | grep libhdf5 had the paths to llibhdf5 files.
    After doing the above, postgis raster support installation went smoothly.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM