centOS7.4安装PostgreSQL
程序员文章站
2024-03-21 18:45:16
...
本文参考原文地址:https://www.cnblogs.com/stulzq/p/7766409.html
PostgreSQL 所用版本为:PostgreSQL 10
1.安装存储库
yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7.4-x86_64/pgdg-centos10-10-2.noarch.rpm
2.安装客户端
yum install postgresql10
3.安装服务端
yum install postgresql10-server
4.验证是否安装成功
rpm -aq| grep postgres
输出如下:
4.初始化数据库
/usr/pgsql-10/bin/postgresql-10-setup initdb
5.启用开机自启动
systemctl enable postgresql-10
systemctl start postgresql-10
6.配置防火墙
firewall-cmd --permanent --add-port=5432/tcp
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
6.1对应阿里云需要开放5432端口
7.修改用户密码
su - postgres 切换用户,执行后提示符会变为 '-bash-4.2$'
psql -U postgres 登录数据库,执行后提示符变为 'postgres=#'
ALTER USER postgres WITH PASSWORD 'postgres' 设置postgres用户密码为postgres
\q 退出数据库
8.开启远程访问
vim /var/lib/pgsql/10/data/postgresql.conf
修改#listen_addresses = 'localhost' 为 listen_addresses='*'
当然,此处‘*’也可以改为任何你想开放的服务器IP
9.信任远程连接
vi m/var/lib/pgsql/10/data/pg_hba.conf
修改如下内容,信任指定服务器连接
# IPv4 local connections:
host all all 127.0.0.1/32 trust
host all all 192.168.157.1/32(需要连接的服务器IP) trust
10.重启服务
systemctl restart postgresql-10
11.使用DBMS软件连接
使用的ADS工具
推荐阅读
-
windows安装mysql-5.7.22解压版
-
MySQL在Mac上安装配置
-
CentOS7.4安装tomcat
-
mysql8 安装步骤 博客分类: Mysql mysql
-
centos7安装MySQL Community Server 8.0.19
-
记录mysq5.7压缩包安装详解
-
Ubuntu 下安装 Ruby 1.9.2 + Rails 3.0.3 博客分类: ruby ubunturvmrubyrails
-
龙芯电脑手动编译安装gcc9.3编译器
-
Widows 环境下安装 ElasticSearch 并配置 ElasticSearch Head
-
Docker(二)——docker安装mysql