详解CentOS7下PostgreSQL 11的安装和配置教程
本文将介绍在 CentOS 7 系统下安装 PostgreSQL 11 数据库的详细步骤和配置。
步骤一:安装 PostgreSQL 11
- 更新系统软件源
$ yum update -y
- 添加 PostgreSQL 的官方仓库
$ rpm -ivh https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
- 安装 PostgreSQL 11 和 pgAdmin 4
$ yum install postgresql11-server postgresql11-contrib pgadmin4 -y
步骤二:配置 PostgreSQL 11
- 初始化 PostgreSQL 数据库
$ /usr/pgsql-11/bin/postgresql-11-setup initdb
- 启动 PostgreSQL 服务
$ systemctl start postgresql-11
- 设置 PostgreSQL 服务自启动
$ systemctl enable postgresql-11
- 设置 PostgreSQL 用户密码
$ su - postgres
$ psql
postgres=# \password postgres
Enter new password:
步骤三:示例操作
示例一:创建新用户和数据库
- 创建一个新用户
$ su - postgres
$ createuser --interactive
- 创建一个新的数据库
$ createdb mydatabase
示例二:在 pgAdmin 4 中连接和管理数据库
- 启动 pgAdmin 4
$ pgadmin4
-
在浏览器中访问
http://localhost:5050/
,并使用 PostgreSQL 用户名和密码登录 -
在 pgAdmin 4 中创建和管理数据库
结论
以上就是在 CentOS 7 系统下安装和配置 PostgreSQL 11 的详细教程。通过本文的指导,你可以轻松地完成 PostgreSQL 11 的安装和配置,并进行常见的数据库操作。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:详解CentOS7下PostgreSQL 11的安装和配置教程 - Python技术站