下载安装包,解压到服务器中,然后 make && make install
# 登录使用
./psql
# 切换数据库
\c [db]
# 修改密码
ALTER USER postgres WITH-PASSWORD 'postgres';
# 配置文件(pg_hba.conf)修改IP,允许外部访问
listen_addresses = '*' # what IP address(es) to listen on;
# 进程启动和停止
pg_ctl -D /opt/postgresql-11.6/data -l /opt/postgresql-11.6/log/postgres.log start
pg_ctl -D /opt/postgresql-11.6/data -l /opt/postgresql-11.6/log/postgres.log stop
# 进程检查和终结
netstat -ano | findstr 5432 查找端口是否被占用
kill [pid] 杀掉进程
防火墙
# 查询防火墙状态
systemctl status firewalld
# 启动防火墙
systemctl start firewalld
# 关闭防火墙
systemctl stopfirewalld
# 重启防火墙
firewall-cmd --reload
# 查看目前开放端口
firewall-cmd --zone=public --list-ports
# 查询是否开放端口
firewall-cmd --query-port=5432/tcp
# 开放具体端口
firewall-cmd --add-port=5432/tcp --permanent
后续会持续补充,欢迎关注!有任何疑问和指导欢迎评论区探讨!