centOS 7.5 安装postgres 数据库

新项目使用postgresql,安装周折也浪费点时间,记录下

1. 使用yum存储库,安装postgreSQL-10 命令:

yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-redhat10-10-2.noarch.rpm

2. 安装服务器软件包:

yum install postgresql10-server

3. 安装客户端软件包:

yum install postgresql10

4. 可选地初始化数据库并启用自动启动:

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


systemctl enable postgresql-10


systemctl start postgresql-10

5. 配置用户名密码:

PostgreSQL登录
#sudo -u postgres psql 
postgres=# ALTER USER postgres WITH PASSWORD 'postgres';
postgres=#\q

6. 配置远程访问

查看pg_hba.conf的路径:
su - postgres -c "psql -t -P format=unaligned -c 'show hba_file'"


#vim /var/lib/pgsql/10/data/pg_hba.conf
host    all     all             0.0.0.0/0               trust
#vim /var/lib/pgsql/10/data/postgresql.conf


listen_addresses = '*'

7. 配置完成后,重启服务器即可连接。

你可能感兴趣的:(Linux相关,cent7.5,postgres)