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数据库
上一篇: 深入浅析php json 格式控制
推荐阅读
-
windows下ipython的安装与使用详解
-
Linux下MySQL安装配置 MySQL配置参数详解
-
MySQL5.6下windows msi安装详细介绍
-
MySql安装与配置方法(MySQL添加用户、删除用户与授权)
-
CentOS 7.2下MySQL的安装与相关配置
-
Ubuntu与windows双系统下共用MySQL数据库的方法
-
mysql 5.7.14 下载安装、配置与使用详细教程
-
Windows 下noinstall方式安装 mysql 5.7.5 m15 winx64(推荐)
-
mysql 5.7 zip 文件在 windows下的安装教程详解
-
Windows下安装ElasticSearch的方法(图文)