首页 > 技术相关 > CentOS安装PostgreSQL
2019
09-17

CentOS安装PostgreSQL

命令总结:

yum install -y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
yum install -y postgresql96-server postgresql96-contrib
/usr/pgsql-9.6/bin/postgresql96-setup initdb
systemctl start postgresql-9.6
systemctl enable postgresql-9.6

firewall-cmd --add-service=postgresql --permanent
firewall-cmd --reload

su - postgres
psql -U postgres
ALTER USER postgres with encrypted password 'abc123';
\q
exit

vi /var/lib/pgsql/9.6/data/postgresql.conf
vi /var/lib/pgsql/9.6/data/pg_hba.conf
systemctl restart postgresql-9.6.service

 

1、安装rpm文件

yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

2、安装客户端

yum install postgresql10

3、安装服务端

yum install postgresql10-server

4、初始化

/usr/pgsql-10/bin/postgresql-10-setup initdb

5、设置自动启动并且启动postgresql服务

systemctl enable postgresql-10
systemctl start postgresql-10

postgresql的安装比较简单,官网上有明确的操作步骤

第二部分:创建用户和数据库

1、使用postgres用户登录(PostgresSQL安装后会自动创建postgres用户,无密码)

su - postgres

CentOS安装PostgreSQL - 小东 - 1

2、登录postgresql数据库

CentOS安装PostgreSQL - 小东 - 2

3、创建用户和数据库并授权

create user test_user with password 'abc123';            // 创建用户
create database test_db owner test_user;                 // 创建数据库
grant all privileges on database test_db to test_user;   // 授权

CentOS安装PostgreSQL - 小东 - 3

4、退出psql(输入 \q 再按回车键即可)

\q

CentOS安装PostgreSQL - 小东 - 4

第三部分:开启远程访问

1、修改/var/lib/pgsql/10/data/postgresql.conf文件,取消 listen_addresses 的注释,将参数值改为“*”

CentOS安装PostgreSQL - 小东 - 5

CentOS安装PostgreSQL - 小东 - 6

2、修改/var/lib/pgsql/10/data/pg_hba.conf文件,增加下图红框部分内容

CentOS安装PostgreSQL - 小东 - 7

CentOS安装PostgreSQL - 小东 - 8

3、切换到root用户,重启postgresql服务

systemctl restart postgresql-10.service

CentOS安装PostgreSQL - 小东 - 9

4、使用数据库连接工具测试连接

第四部分:额外补充

1、修改默认生成的 postgres 用户密码(此postgres非上面的postgres用户,此为数据库的用户,上面的为操作系统的用户)

su - postgres
psql -U postgres
alter user postgres with encrypted password '1';

2、服务启动、关闭、重启、查看状态命令

systemctl start postgresql-10.service     // 启动服务
systemctl stop postgresql-10.service      // 关闭服务
systemctl restart postgresql-10.service   // 重启服务
systemctl status postgresql-10.service    // 查看状态

 

最后编辑:
作者:管理员
这个作者貌似有点懒,什么都没有留下。