PostgreSQL 10编译安装(CentOS 7)
Posted pgertank
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL 10编译安装(CentOS 7)相关的知识,希望对你有一定的参考价值。
文档版本:v1.0
环境说明:
PostgreSQL 10.9
CentOS 7.6
1 安装必要软件
# yum groupinstall -y "Development tools" # yum install -y bison flex readline-devel zlib-devel gcc
2 获取Postgres资源并编译安装
可通过访问https://www.postgresql.org/ftp/source/确定所需版本,以下使用10.9版本进行安装。
3 创建用户
4 创建路径及权限修改
8 修改白名单
PG默认不允许远程访问数据库,可以通过修改监听地址、修改pg_hba.conf文件来实现远程访问。
参考资料:
《PostgreSQL实战》-第一章
《PostgreSQL 10.1手册》-服务器管理-16.从源码安装
https://blog.csdn.net/helloworld_dream/article/details/81483235
https://www.cnblogs.com/tplife2019/p/10234275.html
http://www.mamicode.com/info-detail-2373348.html
Keep moving
Tank
2019.7.19
以上是关于PostgreSQL 10编译安装(CentOS 7)的主要内容,如果未能解决你的问题,请参考以下文章
Linux CentOS 7 安装PostgreSQL 9.5(源码编译)