centos7源码安装postgresql11.6+postgis2.5

安装Postgresql-11

前期都比较顺利,直接上命令

yum install zlib-devel gcc make
yum install -y readline-devel.x86_64 uuid uuid-devel
groupadd postgres
useradd -g postgres postgres
passwd postgres
mkdir -p /usr/local/postgresql
chown -R postgres:postgres /usr/local/postgresql
cd /usr/local/src/
wget https://ftp.postgresql.org/pub/source/v11.6/postgresql-11.6.tar.gz
tar -xzvf postgresql-11.6.tar.gz
cd postgresql-11.6
./configure --prefix=/usr/local/postgresql --without-readline --with-ossp-uuid
make && make install
安装contrib目录下的一些工具,是第三方组织的一些工具代码,建议安装
cd contrib
make && make install
把程序目录全部赋权给postgres用户
chown -R postgres.postgres /usr/local/postgresql
创建数据目录 /data/postgresql/data
[root@localhost /]# mkdir data
[root@localhost /]# cd data
[root@localhost data]# mkdir postgresql
[root@localhost data]# cd postgresql
[root@localhost postgresql]# mkdir data
把数据目录全部赋权给postgres用户
chown -R postgres.postgres /data/postgresql/data
配置环境变量

编辑用户目录下.bashrc文件,主要是设置PGDATA变量

切换到postgres账户

su - postgres

编辑用户下配置文件

vim .bashrc

编辑内容如下:

PGHOME=/usr/local/postgresql
export PGHOME
PGDATA=/data/postgresql/data
export PGDATA
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$PGHOME/bin
export PATH

编辑完成,按esc,输入 wq!保存退出,重新启用下配置文件
source .bashrc
初始化数据库

initdb -D /data/postgresql/data

启动服务

pg_ctl start -D $PGDATA

设置用户密码

使用postgres账户进入控制台(现在密码应该是空)

[postgres@pg1 ]# psql -U postgres
postgres=# \password
Enter new password: <123456>
Enter it again: <123456>

把密码设置成123456可以使用\q命令退出控制台

设置监听 修改postgresql/data目录下的pg_hba.conf
[postgres@pg1 ~]$  vim $PGDATA/pg_hba.conf
修改IPv4 一行内容如下:
# IPv4 local connections:
host    all             all             0.0.0.0/0            trust
修改postgresql.conf:
[postgres@pg1 ~]$ vim $PGDATA/postgresql.conf

修改监听一节如下:

# - Connection Settings -
listen_addresses = '*' 
port = 5432 

wq!保存退出。 重启pg服务生效

[postgres@pg1 ~]$ pg_ctl restart -D $PGDATA
配置防火墙
su - root
vi /etc/sysconfig/iptables
-A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 5432 -j ACCEPT

执行命令:

service iptables restart

或者直接关闭:

/etc/init.d/iptables status
chkconfig iptables off   #永久关闭,重启生效
/etc/init.d/iptables stop #当前关闭

安装 PostGIS

安装LibXML2 json-c 等等
yum install -y libtool libxml2 libxml2-devel libxslt libxslt-devel json-c json-c-devel cmake gmp gmp-devel mpfr mpfr-devel boost-devel pcre-devel
安装Proj4
cd /usr/local/src/
wget http://download.osgeo.org/proj/proj-4.9.3.tar.gz
tar -xf proj-4.9.3.tar.gz
cd proj-4.9.3
./configure --prefix=/usr/local/postgresql/plugin/proj
make
make install
echo "/usr/local/postgresql/plugin/proj/lib" > /etc/ld.so.conf.d/proj-4.9.3.conf
ldconfig
安装GEOS
wget http://download.osgeo.org/geos/geos-3.7.3.tar.bz2
tar -jxf geos-3.7.3.tar.bz2
cd geos-3.7.3
./configure --prefix=/usr/local/postgresql/plugin/geos
make
make install
echo "/usr/local/postgresql/plugin/geos/lib" > /etc/ld.so.conf.d/geos-3.7.3.conf
ldconfig
安装GDAL
wget http://download.osgeo.org/gdal/2.1.2/gdal-2.1.2.tar.gz
tar -xf gdal-2.1.2.tar.gz
cd gdal-2.1.2
./configure --prefix=/usr/local/postgresql/plugin/gdal
make
make install
echo "/usr/local/postgresql/plugin/gdal/lib" > /etc/ld.so.conf.d/gdal-2.1.2.conf
ldconfig
安装PostGIS
wget https://download.osgeo.org/postgis/source/postgis-2.5.2.tar.gz
tar -xvzf postgis-2.5.2.tar.gz
cd postgis-2.5.2
./configure --prefix=/usr/local/postgresql/plugin/postgis --with-pgconfig=/usr/local/postgresql/bin/pg_config --with-geosconfig=/usr/local/postgresql/plugin/geos/bin/geos-config --with-gdalconfig=/usr/local/postgresql/plugin/gdal/bin/gdal-config --with-projdir=/usr/local/postgresql/plugin/proj
make
make install
安装fuzzystrmatch
cd /usr/local/src/postgresql-11.6/contrib/fuzzystrmatch
make && make install
检查PostGIS是否安装成功
#切换postgres用户
su - postgres
#登录PG数据库
psql
# 创建一个数据库
create database postgis;
#切换到postgis库中
\c postgis
#显示一下扩展模块
\dx

CREATE EXTENSION postgis;
CREATE EXTENSION postgis_topology;
CREATE EXTENSION fuzzystrmatch;
CREATE EXTENSION postgis_tiger_geocoder;

环境配置

设置系统服务(用root权限):

复制postgresql安装目录下的linux文件到/etc/init.d/,进入postgresql 的安装目录(即刚刚使用tar命令解压的目录):

cd postgresql-11.6
cp contrib/start-scripts/linux /etc/init.d/postgresql
vim /etc/init.d/postgresql

修改如下:

# 修改prefix
prefix = /home/hadoop/pgsql

# 修改PGDATA
PGDATA="/home/hadoop/pgsql/data"

# 修改PGUSER
PGUSER=hadoop

# 修改PGLOG
PGLOG="$PGDATA/log-history"

添加执行权限:

chmod +x /etc/init.d/postgresql

这样,还可以通过系统命令开启和关闭postgresql服务(需要root权限):

/etc/init.d/postgresql start
/etc/init.d/postgresql stop
让数据库开机启动
chkconfig --add postgresql
chkconfig postgresql on

源码安装相关问题及解决方案

uuid扩展报错
postgres=# CREATE EXTENSION "uuid-ossp"; 
ERROR:  could not access file "$libdir/uuid-ossp": No such file or directory

回源码目录,安装uuid就可以

# cd postgresql-11.6/contrib/uuid-ossp
# make && make install
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345

推荐阅读更多精彩内容