1.执行更新命令
2. postgresql安装命令
编辑3.安装完成
4.登录postgresql命令
5.修改postgresql密码命令
6. postgreSQL密码修改完成
7.进入postgres用户
8. 进入postgresql
9.创建数据库命令
10.删除数据库
11.查看版本号
12.找到postgresql文件
13.设置远程访问,并且关闭ssl
14.修改postgresql的账号密码
15.修改允许访问网段,在pg_hba.conf 配置文件修改。
编辑17.连接成功
sudo apt update
sudo apt install postgresql
sudo -u postgres -i
sudo passwd postgres
su - postgres
psql
create database xxxx with owner=postgres encoding='UTF-8';
drop database xxx;
psql --version
SHOW config_file;
\password postgres
IPv4网段:
host all all 0.0.0.0/0 md5
ipv6网段:
host all all ::/0 md5