PostgreSQL(1)数据库安装及基本命令

2021/7/21 2:08:51

本文主要是介绍PostgreSQL(1)数据库安装及基本命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.数据库安装

1.1windows系统

官网下载合适的版本:

https://www.enterprisedb.com/downloads/postgres-postgresql-downloads

安装过程很简单,只需注意设置超级用户密码和端口即可(端口号已默认填写)。

1.2Linux系统

这里以CentOS为例。

按以下步骤执行。

//1、安装rpm文件
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
//2、安装客户端
yum install postgresql10
//3、安装服务端
yum install postgresql10-server
//4、初始化
/usr/pgsql-10/bin/postgresql-10-setup initdb
//5、设置自动启动并且启动postgresql服务
systemctl enable postgresql-10
systemctl start postgresql-10

2.基本命令



这篇关于PostgreSQL(1)数据库安装及基本命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程