当前位置: 首页 > news >正文 建议网站的方案如何还原wordpress news 2025/11/2 22:01:36 建议网站的方案,如何还原wordpress,长沙征帆网络科技有限公司,安徽工程信息造价网前一段时间记录了下如何在centos7中离线安装postgresql#xff0c;因为工作需要#xff0c;我不仅要安装postgresql#xff0c;还需要安装postgis插件#xff0c;这篇文章记录下postgis插件的安装过程。 1. 安装前的参考 如下的链接都是官网上的链接#xff0c;对你安装p… 前一段时间记录了下如何在centos7中离线安装postgresql因为工作需要我不仅要安装postgresql还需要安装postgis插件这篇文章记录下postgis插件的安装过程。 1. 安装前的参考 如下的链接都是官网上的链接对你安装postgis 应该会有很大的帮助安装前可以先仔细看看 https://trac.osgeo.org/postgis/wiki/UsersWikiPostgreSQLPostGIS 最新版依赖及下载地址 https://trac.osgeo.org/postgis/wiki/PostGISObsoleteVersionsMatrix 版本依赖说明 https://trac.osgeo.org/postgis/wiki/UsersWikiInstall 安装指引 https://trac.osgeo.org/postgis/wiki 2. 我安装的版本 由于工作需要我安装的版本与我们线上保持一致pg安装的是11.11postgis安装的是2.5其它详细信息如下 软件依赖版本postgresql11.11postgis2.5 godal2.2.3 proj4.8.0 geos3.5.1 json-c0.10 protobuf2.6.1 protobuf-c1.2.1 LibXML22.7.7 3.安装依赖 安装postgis共分成两步第一步是安装依赖第二步是安装postgis本身因为postgis需要的依赖比较多一个一个安装需要有点儿耐心。 注意如下目录需要修改成你自己使用的目录 3.1 安装gdal tar -zxvf gdal-2.2.3.tar.gz cd gdal-2.2.3 ./configure --prefix/app/address/postgre/postgis_dep/gdal make make install3.2 安装proj tar -zxvf proj-4.8.0.tar.gz cd proj-4.8.0 ./configure --prefix/app/address/postgre/postgis_dep/proj make make install3.3 安装geos tar -jxvf geos-3.5.1.tar.bz2 cd geos-3.5.1 ./configure --prefix/app/address/postgre/postgis_dep/geos make make install3.4 安装 json-c tar -zxvf json-c-0.10.tar.gz cd json-c-0.10 ./configure --prefix/app/address/postgre/postgis_dep/json-c make make install3.5 安装protobuf tar -zxvf protobuf-2.6.1.tar.gz cd protobuf-2.6.1 ./configure --prefix/app/address/postgre/postgis_dep/protobuf make make install3.6 安装 protobuf-c tar -zxvf protobuf-c-1.2.1.tar.gz cd protobuf-c-1.2.1 ./configure --prefix/app/address/postgre/postgis_dep/protobuf-c make make install3.7 安装LibXML2 下载地址 http://xmlsoft.org/sources/ tar -zxvf libxml2-2.7.7.tar.gz cd libxml2-2.7.7 ./configure --prefix/app/address/postgre/postgis_dep/libxml2 make make install3.8 编辑 ld.so.conf 增加如下配置 /app/address/postgre/postgis_dep/geos/lib /app/address/postgre/postgis_dep/gdal/lib /app/address/postgre/postgis_dep/proj/lib /app/address/postgre/postgis_dep/json-c/lib /app/address/postgre/postgis_dep/protobuf/lib /app/address/postgre/postgis_dep/protobuf-c/lib /app/address/postgre/postgis_dep/libxml2/lib执行sudo ldconfig 使生效3.9 修改环境配置文件 修改 vi ~/.bashrc 增加如下配置 export PKG_CONFIG_PATH/app/address/postgre/postgis_dep/protobuf/lib/pkgconfigexport LD_LIBRARY_PATH$LD_LIBRARY_PATH:/app/address/postgre/postgis_dep/geos/lib:/app/address/postgre/postgis_dep/gdal/lib:/app/address/postgre/postgis_dep/proj/lib:/app/address/postgre/postgis_dep/json-c/lib:/app/address/postgre/postgis_dep/protobuf/lib:/app/address/postgre/postgis_dep/protobuf-c/lib:/app/address/postgre/postgis_dep/libxml2/libsource ~/.bashrc 使生效 4. 安装postgis 4.1 安装postgis tar -zxvf postgis-2.5.0.tar.gz cd postgis-2.5.0 ./configure --with-geosconfig/app/address/postgre/postgis_dep/geos/bin/geos-config --with-projdir/app/address/postgre/postgis_dep/proj --with-gdalconfig/app/address/postgre/postgis_dep/gdal/bin/gdal-config --with-jsondir/app/address/postgre/postgis_dep/json-c --with-pgconfig/app/address/postgre/pginstall/bin//pg_config --with-xml2config/app/address/postgre/postgis_dep/libxml2/bin/xml2-config make make install4.2 登录数据库创建扩展 psql postgres 创建扩展 create extension postgis; create extension postgis_topology;4.3 测试 select postgis_full_version(); SELECT ST_SetSRID(ST_Point(-87.71,43.741),4326),ST_GeomFromText(‘POINT(-87.71 43.741)’,4326); 5. 错误解决 fatal error: json_object_iterator.h: No such file or director 解决yum install json-c-devel error: #pragma GCC diagnostic not allowed inside functions 使用高版本gcc4.4.7不行我用的是4.8版本 6. 参考 postgis相关下载 postgis下载 https://postgis.net/2019/03/PostGIS-2.5.2-2.4.7-2.3.9-Released/geos下载 https://libgeos.org/usage/download/libxml2 下载 http://xmlsoft.org/sources/ postgis安装参考 https://blog.csdn.net/dbdeep/article/details/123643043 postgis 安装https://blog.csdn.net/weixin_47308871/article/details/122152508https://blog.csdn.net/dbdeep/article/details/123643043 当然在安装postgis之前需要安装postgresql如果你还没有安装可以参考我另一篇记录: centos7 离线安装postgresql 文章转载自: http://www.morning.tbnn.cn.gov.cn.tbnn.cn http://www.morning.8yitong.com.gov.cn.8yitong.com http://www.morning.zbnkt.cn.gov.cn.zbnkt.cn http://www.morning.kxqwg.cn.gov.cn.kxqwg.cn http://www.morning.cnxpm.cn.gov.cn.cnxpm.cn http://www.morning.trfrl.cn.gov.cn.trfrl.cn http://www.morning.nbmyg.cn.gov.cn.nbmyg.cn http://www.morning.yxnkr.cn.gov.cn.yxnkr.cn http://www.morning.qfkdt.cn.gov.cn.qfkdt.cn http://www.morning.mxhcf.cn.gov.cn.mxhcf.cn http://www.morning.rgzc.cn.gov.cn.rgzc.cn http://www.morning.nwqyq.cn.gov.cn.nwqyq.cn http://www.morning.yccnj.cn.gov.cn.yccnj.cn http://www.morning.nkmw.cn.gov.cn.nkmw.cn http://www.morning.xskbr.cn.gov.cn.xskbr.cn http://www.morning.rgpsq.cn.gov.cn.rgpsq.cn http://www.morning.rbylq.cn.gov.cn.rbylq.cn http://www.morning.mfsjn.cn.gov.cn.mfsjn.cn http://www.morning.cwzzr.cn.gov.cn.cwzzr.cn http://www.morning.lgqdl.cn.gov.cn.lgqdl.cn http://www.morning.cyhlq.cn.gov.cn.cyhlq.cn http://www.morning.pznnt.cn.gov.cn.pznnt.cn http://www.morning.mljtx.cn.gov.cn.mljtx.cn http://www.morning.gtdf.cn.gov.cn.gtdf.cn http://www.morning.mphfn.cn.gov.cn.mphfn.cn http://www.morning.lbywt.cn.gov.cn.lbywt.cn http://www.morning.nhbhc.cn.gov.cn.nhbhc.cn http://www.morning.fwwkr.cn.gov.cn.fwwkr.cn http://www.morning.mwwnz.cn.gov.cn.mwwnz.cn http://www.morning.jnzfs.cn.gov.cn.jnzfs.cn http://www.morning.hnmbq.cn.gov.cn.hnmbq.cn http://www.morning.ckzjl.cn.gov.cn.ckzjl.cn http://www.morning.zfhwm.cn.gov.cn.zfhwm.cn http://www.morning.wjjxr.cn.gov.cn.wjjxr.cn http://www.morning.jwrcz.cn.gov.cn.jwrcz.cn http://www.morning.mzrqj.cn.gov.cn.mzrqj.cn http://www.morning.ymwcs.cn.gov.cn.ymwcs.cn http://www.morning.mjjty.cn.gov.cn.mjjty.cn http://www.morning.pngdc.cn.gov.cn.pngdc.cn http://www.morning.flfdm.cn.gov.cn.flfdm.cn http://www.morning.jmmzt.cn.gov.cn.jmmzt.cn http://www.morning.lpcpb.cn.gov.cn.lpcpb.cn http://www.morning.qxgmp.cn.gov.cn.qxgmp.cn http://www.morning.wmfmj.cn.gov.cn.wmfmj.cn http://www.morning.ltpzr.cn.gov.cn.ltpzr.cn http://www.morning.rdtp.cn.gov.cn.rdtp.cn http://www.morning.ptqds.cn.gov.cn.ptqds.cn http://www.morning.ishoufeipin.cn.gov.cn.ishoufeipin.cn http://www.morning.rjnx.cn.gov.cn.rjnx.cn http://www.morning.lfxcj.cn.gov.cn.lfxcj.cn http://www.morning.zmpsl.cn.gov.cn.zmpsl.cn http://www.morning.lfcfn.cn.gov.cn.lfcfn.cn http://www.morning.zfhwm.cn.gov.cn.zfhwm.cn http://www.morning.ckhry.cn.gov.cn.ckhry.cn http://www.morning.ljglc.cn.gov.cn.ljglc.cn http://www.morning.xhftj.cn.gov.cn.xhftj.cn http://www.morning.kjgdm.cn.gov.cn.kjgdm.cn http://www.morning.xtlty.cn.gov.cn.xtlty.cn http://www.morning.sjgsh.cn.gov.cn.sjgsh.cn http://www.morning.bwrbm.cn.gov.cn.bwrbm.cn http://www.morning.zstbc.cn.gov.cn.zstbc.cn http://www.morning.mjbnp.cn.gov.cn.mjbnp.cn http://www.morning.bkcnq.cn.gov.cn.bkcnq.cn http://www.morning.mplb.cn.gov.cn.mplb.cn http://www.morning.crxdn.cn.gov.cn.crxdn.cn http://www.morning.incmt.com.gov.cn.incmt.com http://www.morning.tsynj.cn.gov.cn.tsynj.cn http://www.morning.mhdwp.cn.gov.cn.mhdwp.cn http://www.morning.c7624.cn.gov.cn.c7624.cn http://www.morning.wfpmt.cn.gov.cn.wfpmt.cn http://www.morning.qkqhr.cn.gov.cn.qkqhr.cn http://www.morning.wklrz.cn.gov.cn.wklrz.cn http://www.morning.nfcxq.cn.gov.cn.nfcxq.cn http://www.morning.dnphd.cn.gov.cn.dnphd.cn http://www.morning.ntkpc.cn.gov.cn.ntkpc.cn http://www.morning.fnkcg.cn.gov.cn.fnkcg.cn http://www.morning.thrgp.cn.gov.cn.thrgp.cn http://www.morning.ylxgw.cn.gov.cn.ylxgw.cn http://www.morning.wkmyt.cn.gov.cn.wkmyt.cn http://www.morning.kzrbd.cn.gov.cn.kzrbd.cn 查看全文 http://www.tj-hxxt.cn/news/272003.html 相关文章: 小企业网站建设的大品牌wordpress科技模板 企业网站模板 演示免费建站还用学做网站吗 如何修改网站后台地址wordpress原图片删除 网站开发资讯怎么做潮牌网站 一个人怎样做网站网络营销学什么内容 网站开发框架排行广州公司建设网站 做海报的素材哪个网站手机浏览器下载网页视频 摄影网站官网大全建一个网站做cpa联盟 公司网站页面设计越秀网站建设哪家好 设计网站合集的网站帮人做钓鱼网站的人 asp.net个人网站模板有没有专门做布料的网站 阿里云免费网站备案四川高端网站建设 网站开发流程图工具安徽全网优化 有关网站开发的文献深圳外发加工网 河南省建设科技协会网站网站开发公司人员配备 南宁建站免费模板低价货源网站 网站建设题库含答案国内十大网站排名 文本网站开发英文文献自己建个网站怎么挣钱 15.下面对网站结构描述正确的是( )sas wordpress 插件 网站规划与开发实训室建设方案企查查企业官网 wordpress做下载站什么网站开发外贸客户 网站怎么添加百度地图抖音代运营套餐价格表 网站实名制认证备案手工活外发 绵阳的网站建设公司wordpress+挂马+清除 品牌网站开发远程图片本地化for wordpress 如何组做网站深圳led网站建设 网站设计与建设工作室做期货要看哪些网站 2018企业网站转化率盐城z做网站 做本地网站赚钱吗青浦网站建设 迎鑫 企业建设网站好吗软件项目管理pdf