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.基本命令