CentOS 7 离线、安装、配置 PostgreSQL 9.5及PostGIS2.2(上)


参考地址:
https://blog.csdn.net/wlwlwlwl015/article/details/53256358
https://blog.csdn.net/u011037214/article/details/53543231
https://www.cnblogs.com/ilifeilong/p/6979288.html
postgis官方文档
postgresql官方文档
感谢以上文档的提供者

**由于我们使用的服务器在内网,不能连接网络,所以只能离线安装posgresql.以下是postgresql和postgis安装过程和我本人踩过的一些坑 **

1.安装postgresql

下载源码

https://www.postgresql.org/ftp/source/
###解压 安装
tar -xvf postgresql-9.5.14.tar.gz
进入解压目录

./configure   

yum install gcc

yum install make

rpm -qa|grep  readline

 yum search readline

 yum install readline-devel

./configure  --prefix=/usr/local/postgresql   //--prefix    安装目录

 make

 make install

 vi  .bash_profile     //配置环境变量
 
source ./.bash_profile

//数据库位置
initdb  --padata=/usr/local/postgresql/data    

//启动服务
 ./pg_ctl restart -D /usr/local/postgresql/data  -l /usr/local/postgresql/log/pg_server.log
 

转载自:https://blog.csdn.net/qq_35433306/article/details/82493818

You may also like...