Install the repository RPM:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
Install PostgreSQL:
sudo yum install -y postgresql96-server
Optionally initialize the database and enable automatic start:
sudo /usr/pgsql-9.6/bin/postgresql96-setup initdb
#设置开机启动
sudo systemctl enable postgresql-9.6
#启动数据库
sudo systemctl start postgresql-9.6
#进入数据库
su - postgres
psql -U postgres
#修改密码
ALTER USER postgres with encrypted password ‘wz123456’;
#配置远程访问:
vim /var/lib/pgsql/9.6/data/postgresql.conf
找到listen_addresses = ‘localhost’ ,将 localhost 改为 *
vmi /var/lib/pgsql/9.6/data/pg_hba.conf
如果允许本地项目访问,将local、IPv4、IPv6的peer改为trust
并在IPv4增加一行:
host all all 0.0.0.0/0 md5
#重启数据库
sudo systemctl restart postgresql-9.6
防火墙设置:
firewall-cmd --add-service=postgresql --permanent
firewall-cmd --reload
#查看版本
[root@VM_0_3_centos yum-root-L9XJTV]# psql --version
相关命令
systemctl restart postgresql-9.6.service #重启服务
systemctl enable postgresql-9.6.service #设置开机自启
systemctl start postgresql-9.6.service #开启服务
systemctl status postgresql-9.6.service #查看服务状态
数据库相关操作:
\q #退出postgresql
\l #查看所有数据库
\dt #查看数据库表
\d test #查看表结构
\c dbname #切换数据库
\i /pathA/xxx.sql #执行某个sql文件