centos连接postgres数据库
时间: 2023-12-22 12:05:04 浏览: 150
postgres9.6 离线安装部署(centos7.x)
1. 安装PostgreSQL
CentOS7中安装PostgreSQL,可以使用以下命令:
```
yum install postgresql-server postgresql-contrib
```
2. 初始化PostgreSQL
执行以下命令初始化数据库:
```
/usr/bin/postgresql-setup initdb
```
3. 启动PostgreSQL
执行以下命令启动PostgreSQL:
```
systemctl start postgresql
```
4. 创建数据库
执行以下命令创建数据库:
```
createdb mydatabase
```
5. 连接数据库
使用以下命令连接到PostgreSQL数据库:
```
psql -d mydatabase
```
6. 关闭PostgreSQL
执行以下命令关闭PostgreSQL:
```
systemctl stop postgresql
```
注:以上命令需要使用root用户执行。
阅读全文