当前位置:   article > 正文

postgresql客户端远程连接_免费连接postgresql客户端

免费连接postgresql客户端

1. postgresql 远程配置

$ vi /var/lib/pgsql/12/data/pg_hba.conf
# 最后一行添加 
# local   replication     all                                     peer
host    all             all              0.0.0.0/0              md5
## 重启
$ service postgresql-12.service restart
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2. postgresql 本地登录修改密码

$ psql -h localhost -p 5432 -d demo -U postgres
psql (12.4)
Type "help" for help.

demo=>

$ ALTER USER postgres WITH PASSWORD '123456';
ALTER ROLL
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3. vscode远程链接

  • 安装postgresql插件
    在这里插入图片描述
  • 配置数据库
    在这里插入图片描述

4. DBeaver远程链接

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/657056
推荐阅读
相关标签
  

闽ICP备14008679号