使用步骤
安装
初始化数据库及目录
initdb.exe -D D:\data\PostgreSQL\data -E UTF8
设置环境变量PGPATH D:\data\PostgreSQL\data
启动数据库
pg_ctl -l logfile.txt start
建立用户
psql postgres
create user bbb with superuser password '123456';
修改密码
alter user pguser with password 'new password';
查看当前用户
select user
备份
C:\PostgreSQL\pg95\bin>pg_dump -h 164.82.233.54 -U postgres databasename > C:\databasename.bak
还原数据库
psql -h localhost -U postgres -d new_db -f "C:/emoneysit.bak"
新建数据库:create database testdb;
查看所有的数据库:\l
查看所有的表:\d
切换数据库:\c testdb;
删除数据库:drop database testdb;
部署
允许外部访问
pg_hba.ini
host all all 0.0.0.0/0 md5
postgresql.ini
listen_addresses = '*' 修改绑定地址
port = 5432 修改端口