https://www.postgresql.org/download/linux/redhat/ #官网地址 #部署 sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm sudo yum install -y postgresql13-server sudo /usr/pgsql-13/bin/postgresql-13-setup initdb sudo systemctl start postgresql-13
修改配置and测试
alter user postgres with password 'xxx'; //修改密码 create user testdbuser with password 'xxx'; // 创建用户 create database testdb owner testdbuser; // 创建数据库 grant all privileges on database testdb to testdbuser; // 授权管理
/var/lib/pgsql/13/data #配置文件目录 修改postgresql.conf文件,取消 listen_addresses 的注释“#”,同时将参数值改为“*”。 修改pg_hba.conf文件, 加入host all all 0.0.0.0/0 scram-sha-256这行 最后重启