记录centos7 安装postgresql10.1

官网地址https://www.postgresql.org/download/linux/redhat/

  1. yum安装上面写的很清楚了,按照步骤来就可以。


    7FDA48BD-5C94-4ECC-9A15-E370E9EFC9E7.png
  2. 编译安装
    1.下载地址https://www.postgresql.org/ftp/source
    2.将文件放到任意目录 解压 tar -zxvf ./postgresql-9.5.5.tar.gz
    3.进入到解压目录, 编译到指定目录
    ./configure --prefix=/usr/local/postgresql/postgresql10.1

    但发现最下面有error。
configure: error: readline library not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support.

执行find / -name readline* 或者rpm -qa | grep readline (rpm -ql readline) 发现是有readline文件的 。
这里结合上次编译安装nginx经验,是缺少devel包导致的。
就百度了一下devel是什么。C语言开发Header头文件和库,使用源码编译需要devel开发包。
附上地址

linux devel包 和 非devel包的区别
转载 2013年11月18日 18:15:37 14069
devel 包主要是供开发用,至少包括以下2个东西:
1. 头文件
2. 链接库
有的还含有开发文档或演示代码。
以 glib 和 glib-devel 为例:
如果你安装基于 glib 开发的程序,只需要安装 glib 包就行了。
但是如果你要编译使用了 glib 的源代码,则需要安装 glib-devel。

3.yum install readline-devel
前提系统安装了gcc 和zlib 库
安装方法 yum install -y gcc gcc-c++
yum install -y zlib zlib-devel
4.再次编译
./configure --prefix=/usr/local/postgresql/postgresql10.1
可以看到有configure: creating ./config.status信息
说明配置文件已经创建。
5.编译安装
make&&make install

make[1]: 离开目录“/usr/local/tool/postgresql-10.1/config”
PostgreSQL installation complete.

最后显示PostgreSQL installation complete.说明安装成功。
6.创建一个普通用户,因为postgresql安装默认的超级用户为postgres,所以要创建一个用户来启动数据库。
useradd postgres
7.修改postgresql安装文件的文件权限给新加用户postgres
chown -R postgres:postgres /usr/local/postgresql/postgresql10.1
8.创建环境变量
切换用户su postgres
编辑文件 vi .bash_profile 如下

PGHOME=/usr/local/postgresql/postgresql10.1
export PGHOME
PGDATA=/usr/local/postgresql/postgresql10.1/data
export PGDATA

PATH=$PATH:$HOME/.local/bin:$HOME/bin:$PGHOME/bin

export PATH

使之生效 source .bash_profile
查看效果

[postgres@localhost ~]$ psql -V
psql (PostgreSQL) 10.1

9.初始化数据库
initdb
由于设置了环境变量PGDATA,所以数据库目录默认为PGDATA指定目录

Success. You can now start the database server using:

    pg_ctl -D /usr/local/postgresql/postgresql10.1/data -l logfile start

[postgres@localhost ~]$ ls /usr/local/postgresql/postgresql10.1/
bin  data  include  lib  share
[postgres@localhost ~]$ ls /usr/local/postgresql/postgresql10.1/data
base          pg_ident.conf  pg_serial     pg_tblspc    postgresql.auto.conf
global        pg_logical     pg_snapshots  pg_twophase  postgresql.conf
pg_commit_ts  pg_multixact   pg_stat       PG_VERSION
pg_dynshmem   pg_notify      pg_stat_tmp   pg_wal
pg_hba.conf   pg_replslot    pg_subtrans   pg_xact

base 是表空间目录,
global 是相关全局变量的目录,
pg_hba.conf是访问控制配置(127.0.0.1改为信任的客户端ip网段使其可以远程访问)
postgresql.conf 是postgresql主配置文件(listen_address=localhost改为星号使其监听整个网络)
10.修改配置文件

修改postgresql.conf
1. listen_addresses = '*'
2. port = 5432
修改pg_hba.conf
# "local" is for Unix domain socket connections only
local   all             all                                  trust
# IPv4 local connections:
host    all             all             0.0.0.0/0            trust

11.启动postgresql 并指定日志文件
pg_ctl start -l /usr/local/postgresql/postgresql10.1/logs/pg_server.log

[postgres@localhost postgresql10.1]$ mkdir logs
[postgres@localhost postgresql10.1]$ mkdir pg_server.log
[postgres@localhost postgresql10.1]$ pg_ctl start -l /usr/local/postgresql/postgresql10.1/logs/pg_server.log
waiting for server to start.... done
server started

12.连接数据库并设置密码

[postgres@localhost postgresql10.1]$ psql
psql (10.1)
Type "help" for help.

postgres=# \password
Enter new password: 
Enter it again: 
postgres=# \l

13.开放端口

[root@localhost postgresql10.1]# firewall-cmd --zone=public --add-port=5432/tcp --permanent
success
[root@localhost postgresql10.1]# firewall-cmd --reload
success
[root@localhost postgresql10.1]# 

14.设置为服务
PostgreSQL的开机自启动脚本位于PostgreSQL源码目录的contrib/start-scripts路径下,其中linux文件就是启动脚本

[root@localhost contrib]# cd start-scripts/
[root@localhost start-scripts]# ls
freebsd  linux  osx

1.修改linux文件权限(切换到root用户进行操作)
[root@localhost start-scripts]# chmod a+x linux
2.复制linux文件到/etc/init.d目录下,更名为postgresql
[root@localhost start-scripts]# cp linux /etc/init.d/postgresql
3.修改/etc/init.d/postgresql文件的两个变量
prefix设置为postgresql的安装路径:/usr/local/postgresql/postgresql10.1
PGDATA设置为postgresql的数据目录路径:/usr/local/postgresql/postgresql10.1/data
4.执行service postgresql restart,重启PostgreSQL服务
这里碰到个问题-bash: /usr/local/postgresql/postgresql10.1/data/logs/serverlog: Permission denied
自己创建logs/serverlog并修改权限chown -R postgres:root logs/

15.设置postgresql服务开机自启动chkconfig postgresql on

[root@localhost logs]# chkconfig postgresql on
[root@localhost logs]# chkconfig --list postgresql
postgresql      0:关 1:关 2:开 3:开 4:开 5:开 6:关

ok,至此服务端安装完成,可以尝试远程连接了。

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

推荐阅读更多精彩内容