CentOS7下安装postgresql11教程
在CentOS 7上安装PostgreSQL 11,请按照以下步骤操作:
- 添加PostgreSQL的官方Yum仓库:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
- 清除缓存:
sudo yum clean all
- 安装PostgreSQL 11:
sudo yum install -y postgresql11 postgresql11-server
- 初始化数据库:
sudo /usr/pgsql-11/bin/postgresql-11-setup initdb
- 启动PostgreSQL服务:
sudo systemctl enable postgresql-11
sudo systemctl start postgresql-11
- 确认PostgreSQL服务状态:
sudo systemctl status postgresql-11
- 登录到PostgreSQL:
sudo -i -u postgres
psql
- 设置密码:
\password postgres
以上步骤将安装PostgreSQL 11并设置服务。确保在执行每个命令之后检查输出以确认操作成功。
评论已关闭