赞
踩
一、安装环境
1、系统环境:Windows 10 家庭中文版
2、PostgreSql:postgresql-11.2-1-windows-x64
3、PostGIS:postgis-bundle-pg11x64-setup-3.1.0-1.exe
PostgreSql:https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
PostGIS:可以直接通过安装postgreSql时下载,其它下载渠道:http://download.osgeo.org/postgis/windows/
本来想安装:postgresql-12.5-1-windows-x64,但是安装报以下错误,所以选择了11.2.1版本。
我修改了安装路径:D:\oyz3dserver\PostgreSQL\11
第1个筛选框:安装PostgreSql服务。
第2个筛选框:安装paAdmin客户端,用于连接操作postgreSql数据库。
第3个筛选框:安装结束后,可以打开新窗口,安装postgresql相关的其它插件,比如:PostGIS.
第4个筛选框:必选,未知。
设置数据库密码:123456
设置数据库端口号:5432
到至postgresql安装完成。以下是下载PostGis,但是下载很慢,建议下载地址:http://download.osgeo.org/postgis/windows/pg11/
选择PostGIS的版本(3个任选其一)和下载位置。
#######连接登录postgresql数据库
C:\Users\zhao>psql -U postgres -h localhost -d postgres -p 5432
用户 postgres 的口令:
psql (11.2)
输入 “help” 来获取帮助信息.
#######创建test数据库
postgres=# create database test;
CREATE DATABASE
#######切换test数据库
postgres=# \c test;
您现在已经连接到数据库 “test”,用户 “postgres”.
#######创建postgis扩展
test=# create extension postgis;
CREATE EXTENSION
POSTGIS=“3.1.0 3.1.0” [EXTENSION] PGSQL=“110” GEOS=“3.9.0-CAPI-1.14.1” PROJ=“7.1.1” LIBXML=“2.9.9” LIBJSON=“0.12” LIBPROTOBUF=“1.2.1” WAGYU=“0.5.0 (Internal)”
(1 行记录)
test=#
PG默认只能本机访问,但是实际情况中,应用服务器多单独部署,需要开通PG的远程访问权限,且是需要配置用户密码的。
需要修改postgres.conf, pg_hba.conf文件。
文件位置:
D:\oyz3dserver\PostgreSQL\11\data\postgresql.conf
D:\oyz3dserver\PostgreSQL\11\data\pg_hba.conf
#listen_addresses='localhost'
listen_addresses='*' --- 修改成'*'全部ip都可以访问改数据库。
host all all 127.0.0.1/32 md5
host all all ::1/128 md5
host replication all 127.0.0.1/32 md5
host replication all ::1/128 md5
host all all 0.0.0.0/0 md5 --添加本行数据
注意: 重启pg数据库
<div id="blog_post_info">
<div class="clear"></div>
<div id="post_next_prev">
<a href="https://www.cnblogs.com/haolb123/p/16553064.html" class="p_n_p_prefix">« </a> 上一篇: <a href="https://www.cnblogs.com/haolb123/p/16553064.html" data-featured-image="" title="发布于 2022-08-05 09:02">Oracle VM VirtualBox Centos 7.2 网络配置</a>
<br>
<a href="https://www.cnblogs.com/haolb123/p/16587700.html" class="p_n_p_prefix">» </a> 下一篇: <a href="https://www.cnblogs.com/haolb123/p/16587700.html" data-featured-image="" title="发布于 2022-08-15 11:29">自定义镜像--Centos带vim编辑器和查看网络配置ifconfig支持</a>
</div><!--end: topics 文章、评论容器-->
· .NET 性能优化 - 复用 StringBuilder
· 从小白到架构师(4): Feed 流系统实战
· 聊一聊对一个 C# 商业程序的反反调试
· 现代 CSS 指南 – at-rule 规则扫盲
· 如何在 .NET 程序崩溃时自动创建 Dump?
</div><!--end: forFlow -->
</div>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
【推荐】腾讯云11.11云上盛惠,云服务器2核2G低至50元/1年