欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Windows下PostgreSQL安装与配置

程序员文章站 2022-03-09 22:36:39
1.官网下载 zip免安装的过程 下载最新的zip包 https://get.enterprisedb.com/postgresql/postgresql-9.5.2-1-windows-x64-b...

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数据库