赞
踩
选择 centOS系统
使用yum安装postgresql14,首先选择安装的版本,然后按照下列步骤进行操作:
在使用yum安装软件时可能会遇到提示“没有可用软件包”。
出现该问题的原因是该软件包在第三方的yum源里面,而不在官方yum源里面。解决的方法,就是安装epel源。
安装命令如下:
- //安装epel源
- sudo yum install epel-release
- //更新
- yum update
更新后即可使用yum安装
- # Install the repository RPM:
- sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-6-x86_64/pgdg-redhat-repo-latest.noarch.rpm
-
- # Install PostgreSQL:
- sudo yum install -y postgresql14-server
- # Optionally initialize the database and enable automatic start:
- sudo /bin/postgresql-14-setup initdb
- sudo systemctl enable postgresql-14
- sudo systemctl start postgresql-14
systemctl status postgresql-14.service
1)修改postgresql.conf文件
sudo vim /var/lib/pgsql/14/data/postgresql.conf
修改listen_addresses="*"
2)修改pg_hab.conf
sudo vim /var/lib/pgsql/14/data/pg_hba.conf
输入 i,进入编辑状态,找到IPv4输入
host all all 0.0.0.0/0 md5
使每个机器都能远程连接
切换用户:
sudo – u postgres psql
修改密码:\password postgres
查看防火墙状态
此时防火墙是开启状态,关闭防火墙
systemctl stop firewalld
再次查看防火墙状态,已关闭。
输入:
ip address
ip地址为ens33下的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。