96-centos安装postgresql
CentOS 安装 PostgreSQL 的步骤如下:
- 添加 PostgreSQL 的 Yum Repository:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-`rpm -E %{rhel}`-x86_64/pgdg-redhat-repo-latest.noarch.rpm
- 清除缓存:
sudo yum clean all
- 安装 PostgreSQL:
sudo yum install -y postgresql12-server postgresql12
- 初始化数据库:
sudo /usr/pgsql-12/bin/postgresql-12-setup initdb
- 启动 PostgreSQL 服务:
sudo systemctl enable --now postgresql-12
- 确认 PostgreSQL 服务运行状态:
sudo systemctl status postgresql-12
- 登录到 PostgreSQL 数据库:
sudo -i -u postgres
psql
以上命令需要在终端中逐行执行,确保网络连接正常以便于 Yum 能够从 PostgreSQL 官方仓库获取相应的软件包。如果你的 CentOS 版本与命令中的版本不符,请根据实际版本进行相应的调整。
评论已关闭