centos7安装pg10

安装

1
2
3
4
5
6
yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm
yum install postgresql10
yum install postgresql10-server
/usr/pgsql-10/bin/postgresql10-setup initdb
systemctl enable postgresql-10
systemctl start postgresql-10

修改配置文件

1
2
3
4
5
6
7
8
9
10
/var/lib/pgsql/10/data/postgresql.conf
listen_addresses = '*'
/var/lib/pgsql/10/data/pg_hba.conf
# IPv4 local connections:
host all all 0.0.0.0/0 trust
systemctl restart postgresql-10

创建用户

1
2
3
4
5
6
7
su - postgres
psql
postgres=# CREATE USER benchmarksql WITH ENCRYPTED PASSWORD 'changeme';
CREATE ROLE
postgres=# CREATE DATABASE benchmarksql OWNER benchmarksql;
CREATE DATABASE

本文标题:centos7安装pg10

文章作者:Louis

发布时间:2017年10月12日 - 12:10

最后更新:2017年10月12日 - 12:10

原始链接:/2017/10/12/install-pg/

许可协议: Louis-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。