postgresql初体验
[文章作者:磨延城 转载请注明原文出处: https://mo2g.com/view/21/ ]
yum安装后,postgresql的默认配置无法远程访问,要想远程使用,得稍微做一些调整.
yum安装后,postgresql的默认配置无法远程访问,要想远程使用,得稍微做一些调整。
参照下边的配置编辑对应文件
1)pg_hba.conf 有点防火墙的意思:
host all all 0.0.0.0/0 md5
2)postgresql.conf:
#listen_addresses = 'localhost'
改为
listen_addresses = '*'
3)关闭或修改防火墙配置/etc/sysconfig/iptables:
添加:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT
4)修改postgres密码:
su postgres psql \password
输入2次非空密码
5)重启数据库、防火墙:
/etc/init.d/postgresql restart /etc/init.d/iptables restart
接下来可以使用pgadmin或navicat访问了
重置nextval('jsonb_id_seq'::regclass)记录
alter sequence jsonb_id_seq restart 20;
上一篇:离歌
我来说两句: