PostgreSQL 14 Installation Guide on RHEL 8
#!/bin/bash
# PostgreSQL 14 Installation Guide on RHEL 8
# 1. 安装PostgreSQL的官方仓库
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 2. 安装PostgreSQL 14
sudo yum install -y postgresql14 postgresql14-server
# 3. 初始化数据库
sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
# 4. 启动并使PostgreSQL 14服务开机自启
sudo systemctl enable postgresql-14
sudo systemctl start postgresql-14
# 5. 确认PostgreSQL 14服务运行状态
sudo systemctl status postgresql-14
# 6. 切换至postgres用户并启动交互式shell
sudo su - postgres
psql
# 7. 设置postgres用户密码
\password postgres
# 8. 创建一个新的数据库用户和数据库
CREATE ROLE myuser WITH LOGIN PASSWORD 'mypassword';
CREATE DATABASE mydb OWNER myuser;
这个脚本展示了如何在RHEL 8上安装和配置PostgreSQL 14。它包括从PostgreSQL官方仓库安装RPM包,初始化数据库,启动服务,设置用户密码,以及创建新的数据库和用户。
评论已关闭