Centos 7.3 安装配置 PostgreSQL 9.x

2020-06-17 00:00:00 创建 用户 数据库 命令 控制台

一、安装 PostgresSQL

Centos 7 自带的 PostgresSQL 是 9.2 版的。因为,yum 已经做了国内源,速度飞快,所以直接就用 yum 安装了。依次执行以下命令即可,非常简单。

sudo yum -y install postgresql-server postgresql
sudo service postgresql initdb
sudo chkconfig postgresql on
sudo systemctl enable postgresql
sudo systemctl start postgresql

相关文章