Windows下PostgreSQL安装与配置
程序员文章站
2022-06-16 14:28:47
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数据库
推荐阅读
-
C#基础之vs2010安装与配置使用教程
-
Win10系统下MySQL8.0.16 压缩版下载与安装教程图解
-
windows版本下mysql的安装启动和基础配置图文教程详解
-
Windows7下安装使用MySQL8.0.16修改密码、连接Navicat问题
-
4种Windows系统下Laravel框架的开发环境安装及部署方法详解
-
Windows下PyMongo下载及安装教程
-
mysql 5.6.21 安装与配置详细步骤
-
Ubuntu下安装并配置VS Code编译C++的方法
-
Windows下通过MySQL Installer安装MySQL服务的教程图解
-
Windows10下安装Docker的步骤图文教程