CentOs 安装和使用postgreSql
2022/7/13 2:21:28
本文主要是介绍CentOs 安装和使用postgreSql,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
安装
打开 PostgreSQL 官网 https://www.postgresql.org/,点击菜单栏上的 Download ,可以看到这里包含了很多平台的安装包,包括 Linux、Windows、Mac OS等 。
# 安装存储库 RPM: sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 安装 PostgreSQL:
sudo yum install -y postgresql14-server sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
# 可选择初始化数据库并启用自动启动:
sudo systemctl enable postgresql-14 sudo systemctl start postgresql-14
安装完毕后,系统会创建一个数据库超级用户 postgres,密码为空。
sudo -i -u postgres
这时使用以下命令进入 postgres,输出以下信息,说明安装成功:
~$ psql psql (9.5.17) Type "help" for help. postgres=#
输入以下命令退出 PostgreSQL 提示符:
\q
PostgreSQL 安装完成后默认是已经启动的,但是也可以通过下面的方式来手动启动服务。
sudo /etc/init.d/postgresql start # 开启 sudo /etc/init.d/postgresql stop # 关闭 sudo /etc/init.d/postgresql restart # 重启
参考:https://www.runoob.com/postgresql/linux-install-postgresql.html
配置远程
接下来要开放远程访问PostgreSQL需要修改权限配置文件pg_hba.conf、配置PostgreSQL参数postgresql.conf,重启PostgreSQL服务,同时不要忘了打开防火墙或在云服务器控制台在打开5432端口
1.修改pg_hba.conf 可以用命令 find / -name "*pg_hba.conf*"
修改内容如下
# Database administrative login by Unix domain socket local all postgres md5 # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all md5 # IPv4 local connections: host all all 0.0.0.0/0 md5
2.修改postgresql.conf
data_directory = '/var/lib/postgresql/14/main' #配置文件夹路劲 hba_file = '/etc/postgresql/14/main/pg_hba.conf' #pg_hba.conf路劲 listen_addresses = '*' # localhost port = 5432
重启服务:
查看服务开机启动列表 命令: systemctl list-unit-files
systemctl restart postgresql-14.service 重启服务
这篇关于CentOs 安装和使用postgreSql的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-13Slicm 框架怎么进行用户认证?-icode9专业技术文章分享
- 2024-11-13在查询时将 map_coord 列的值转换为字符串有哪些方法?-icode9专业技术文章分享
- 2024-11-13如何将微信地区改成自定义文案?-icode9专业技术文章分享
- 2024-11-13DNS 缓存存在问题有哪些症状和解决方法?-icode9专业技术文章分享
- 2024-11-13HTTP 状态码(405)-Method Not Allowed是什么意思?-icode9专业技术文章分享
- 2024-11-13HTTP 状态码(500)-Internal Server Error是什么意思?-icode9专业技术文章分享
- 2024-11-13在 Element UI 中无法修改 $confirm 的取消按钮文字是什么原因?-icode9专业技术文章分享
- 2024-11-13unity XR是什么?-icode9专业技术文章分享
- 2024-11-13伴随矩阵是什么?-icode9专业技术文章分享
- 2024-11-13怎么使用grep -E 来查找匹配最后 2 条数据?-icode9专业技术文章分享