CentOS7安装配置Postgresql

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装配置Postgresql相关的知识,希望对你有一定的参考价值。

执行命令

Yum install postgresql-server

技术分享图片

Yum install postgresql-contrib

技术分享图片

安装完成后,检查postgresql的服务状态

Systemctl status postgresql

技术分享图片

服务未启动

执行systemctl start postgresql启动服务

执行过程有可能会报错

Job for postgresql.service failed because the control process exited with error code. See "systemctl status postgresql.service" and "journalctl -xe" for details.

技术分享图片

安装postgresql后需要初始化数据库

执行postgresql-setup initdb

技术分享图片

再次启动postgresql服务

技术分享图片

用ps命令查看postgresql进程信息

技术分享图片

用su – postgres切换到postgresql用户执行psql的操作

技术分享图片

使用\l查看postgresql的所有数据库信息

技术分享图片

到此可以看到postgresql已正确安装。为了以后每次开机可以启动postgresql,执行如下命令

技术分享图片

到此postgresql基本的安装和配置完成。


更多文章关注微信公众号“挨踢学霸”

以上是关于CentOS7安装配置Postgresql的主要内容,如果未能解决你的问题,请参考以下文章

centos7上的postgresql10安装和配置

CentOS7(64) yum安装配置PostgreSQL 11

Centos7/8快速安装PostgreSQL与配置

centos7 安装配置postgresql

Centos7安装PostgreSQL10

PostgreSQL 安装 & 用户配置