Linux版本:CentOS Linux release 7.9.2009 (Core)
数据库版本:postgresql12.2
wget https://ftp.postgresql.org/pub/source/v12.2/postgresql-12.2.tar.bz2
或者访问下载页面:postgres.cn/v2/download 选取下载安装版本postgresql-12.2.tar.bz2
cd /soft
yum -y install bzip2
tar -jxvf postgresql-12.2.tar.bz2
yum -y install gcc yum -y install readline-devel yum install -y zlib-devel yum install -y make
cd postgresql-12.2
./configure --prefix=/opt/pgsql
make && make install
提示:出现PostgreSQL installation complete 即安装成功
5. 增加新用户,系统提示要给定新用户密码
adduser postgre
passwd postgre
输入:postgre
mkdir /opt/pgsql/data
chown -R postgres:postgres /opt/pgsql/data
su - postgre
/opt/pgsql/bin/initdb -D /opt/pgsql/data
/opt/pgsql/bin/pg_ctl -D /opt/pgsql/data -l logfile start
/opt/pgsql/bin/createdb public
/opt/pgsql/bin/psql public
\q # 退出数据库
exit # 退出postgre用户
ps -ef | grep postgres
安装工具:yum -y install net-tools
netstat -an | grep 5432 或者 lsof -i:5432
vi /etc/profile
export PATH=/opt/pgsql/bin:$PATH
source /etc/profile # 刷新环境变量
# 环境变量生效,重新登陆数据库
su - postgres
psql public
select name,setting from pg_settings where category='File Locations';
listen_addresses = 'localhost' 改为 listen_addresses = '*'
# postgresql.conf 和 postgresql.auto.conf的区别
# 两文件存在相同配置的情况下,优先使用auto.conf,auto.conf 配置文件优先级高于 conf 文件
# 1.postgresql.auto.conf 修改配置时,需登陆数据库使用alter命令修改
# 2.postgresql.conf 修改配置时,可直接编辑该文件
# TYPE DATABASE USER ADDRESS METHOD
host all all 0.0.0.0/0 md5
#无需密码验证可直接连接访问该主机的 所有数据库 任意用户 任意IP地址 md5或 trust
# 在postgre用户下执行
/opt/pgsql/bin/pg_ctl -D /opt/pgsql/data -l logfile stop
# 在postgre用户下执行
/opt/pgsql/bin/pg_ctl -D /opt/pgsql/data -l logfile start
内容 | 命令 |
---|---|
开放防火墙端口 | firewall-cmd --zone=public --add-port=5432/tcp --permanent |
关闭防火墙 | systemctl stop firewalld |
查看防火墙状态 | systemctl status firewalld |
查看所有端口 | firewall-cmd --zone=public --list-ports |
防火墙重新加载配置 | firewall-cmd --reload |