官网地址:点击访问
下载地址:点击访问
直接远程连接会报错:
修改配置文件允许远程访问连接并重启生效:
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 postgresql14-server
sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
sudo systemctl enable postgresql-14
sudo systemctl start postgresql-14
[root@liangcb ~]# su postgres
bash-4.2$ psql
could not change directory to "/root": Permission denied
psql (14.4)
Type "help" for help.
postgres=# alter user postgres with password 'nihao123@nihao'; //重置默认密码
ALTER ROLE
\q
exit退出
[root@liangcb ~]# vim /var/lib/pgsql/14/data/postgresql.conf //允许远程
[root@liangcb ~]# vim /var/lib/pgsql/14/data/pg_hba.conf
systemctl restart postgresql-14.service
连接示例:
psql -h host -U user -d database -p port
[root@liangcb ~]# psql -h 127.0.0.1 -U postgres -p 5432
Password for user postgres:
psql (14.4)
Type "help" for help.
postgres=#
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有