0%

postgresql基本使用

切换postgres用户

$ sudo su - postgres

登录PostgreSQL控制台

$ psql
$ psql -U postgres

退出

postgres-# \q

允许远程访问

1.修改 pg_hba.conf 在最后面添加

1
host    all             all             0.0.0.0/0               md5

centos 默认在 /var/lib/pgsql/10/data 下

windows 一般在 /program files/postgresql/10/data 下

2.查看 postgresql.conf 是否如下配置

1
2
listen_addresses = '*'
port = 5432
坚持技术分享,您的支持将鼓励我继续创作!

欢迎关注我的其它发布渠道