Windows下PostgreSQL安装与配置

1.官网下载

zip免安装的过程

下载最新的zip包 https://get.enterprisedb.com/postgresql/postgresql-9.5.2-1-windows-x64-binaries.zip

2.解压到指定路径

将postgresql-9.5.2-1-windows-x64-binaries.zip解压到你想要安装的路径,本文路径是e:\program files

3.设置初始、用户名、密码

4.切换到bin目录启动

在pgsql文件夹,你能看到bin目录,点进去,执行 initdb -e../data -u postgres

命令的意思是在data文件夹初始化一个数据仓库,用户名设为postgres,密码为空。更多的命令参数使用 initdb –help 查看

初始化完成之后,执行 postgres -e ../data

5.配置文件postgresql.conf中”listen=”localhost”改为listen=”*””

配置文件pg_hba.conf 中 host all all 127.0.0.1/32 md5

添加 host all all 0.0.0.0/0 md5

6.pgadmin测试连接postgresql数据库

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐