上一篇
如何在RHEL 9服务器中安装PostgreSQL 15和 pgAdmin
- 行业动态
- 2024-03-29
- 1
在RHEL 9中安装PostgreSQL 15和pgAdmin,首先启用EPEL仓库,然后使用yum命令安装postgresql15和pgadmin4。完成后,启动服务并设置开机启动。
在RHEL 9服务器中安装PostgreSQL 15和pgAdmin,可以按照以下步骤进行:
1. 安装PostgreSQL 15
1.1 添加PostgreSQL官方仓库
sudo dnf install y https://download.postgresql.org/pub/repos/yum/reporpms/EL9x86_64/pgdgredhat902.noarch.rpm
1.2 安装PostgreSQL 15
sudo dnf install y postgresql15 postgresql15server
1.3 启动并设置开机自启PostgreSQL服务
sudo systemctl enable now postgresql15
2. 安装pgAdmin
2.1 添加pgAdmin官方仓库
sudo dnf install y https://download.postgresql.org/pub/repos/yum/10/redhat/rhel9x86_64/pgdgredhat102.noarch.rpm
2.2 安装pgAdmin
sudo dnf install y pgadmin4
2.3 启动并设置开机自启pgAdmin服务
sudo systemctl enable now pgadmin4
至此,您已经在RHEL 9服务器上成功安装了PostgreSQL 15和pgAdmin,接下来,您可以使用浏览器访问pgAdmin Web界面(默认地址为http://服务器IP地址:5050),并使用默认的用户名和密码(均为"admin")登录,在首次登录后,系统会提示您修改默认密码。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/290445.html