Postgresql

常用命令

  • 登录psql
$ psql -d 
  • 退出\q
  • 查看数据库列表\l
  • 查看帮助\h

配置文件在哪里:

postgres=# select name, setting from pg_settings where category='File Locations' ;

远程访问

修改postgresql.conf

listen_address='*'

修改gp_hba.conf末尾

host    all     all        0.0.0.0/0                 trust

如果PgAdmin登陆时提示:密码错误
为某个用户设定一个密码即可:
示例:为postgres设置密码

sudo -u postgres psql

进入后下面命令设置

\password

你可能感兴趣的:(Postgresql)