码迷,mamicode.com
首页 > 数据库 > 详细

CentOS7通过yum安装postgreSQL

时间:2020-12-22 12:15:14      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   arc   conf   red   mct   安装源   res   local   oca   

选择正确的YUM安装源

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

安装postgreSQL12

yum install postgresql12-contrib postgresql12-server –y

安装初始化

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

切换postgres用户,并修改postgres用户的连接密码

su postgres 
psql
ALTER USER postgres WITH PASSWORD ‘postgres‘;
\q

配置数据库远程连接信任(由于默认配置不支持密码认证,仅可供本地服务器访问,所以需要进行相关配置)

vi /var/lib/pgsql/12/data/pg_hba.conf

local   all  all    md5    
host all all 0.0.0.0/0 md5

开启远程访问

vi /var/lib/pgsql/12/data/postgresql.conf

listen_addresses = ‘*‘

重启数据库服务

systemctl restart postgresql-12

CentOS7通过yum安装postgreSQL

标签:pre   arc   conf   red   mct   安装源   res   local   oca   

原文地址:https://www.cnblogs.com/MartyCode/p/14149354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!