当前位置:   article > 正文

Ubuntu16.04 Postgresql & PostGIS在线安装部署_ubuntu16.04编译安装postgis

ubuntu16.04编译安装postgis

Postgresql安装

  1. 添加PostgreSQl数据库来源,参考官方说明

    # Add PostgreSQL apt repository
    echo 'deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main' >> /etc/apt/sources.list.d/pgdg.list
    
    # Import the repository signing key, and update the package lists
    wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
    
    • 1
    • 2
    • 3
    • 4
    • 5
  2. 安装PostgreSQL

     sudo apt-get update
     # 备注:apt这块没有9.4版本,可以换成9.5等其他版本
     sudo apt-get install postgresql-10
    
    • 1
    • 2
    • 3
  3. 修改用户postgres的密码

    sudo -u postgres psql -c "alter user postgres with password 'postgres';"
    
    • 1
  4. 修改配置文件

    # 1.修改配置文件 pg_hba.conf,如果找不到可以使用命令:find / -name pg_hba.conf 查找
    vi /etc/postgresql/10/main/pg_hba.conf 
    # 在最后一行添加,然后保存并退出(按Esc+:wq!)
    host	all		all		0.0.0.0/0	md5
    
    # 2.修改配置文件postgresql.conf,如果找不到可以使用命令:find / -name postgresql.conf 查找
    vi  /etc/postgresql/10/main/postgresql.conf
    # 将 #listen_addresses = ‘localhost’ 的注释去掉并改为 listen_addresses = ‘*’
    # 修改max_connections按需求更改,默认最大支持100个连接。修改之后保存并退出。
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
  5. 重启服务

    systemctl restart postgresql-10
    
    • 1
  6. 防火墙打开5432端口

    firewall-cmd --permanent --add-port=5432/tcp
    firewall-cmd —reload
    
    • 1
    • 2

    也可以使用如下命令

    sudo ufw allow 5432
    
    • 1

PostGIS安装

  1. 安装PostGIS
    sudo apt install postgresql-10-postgis-2.4 
    sudo apt install postgresql-10-postgis-scripts
    
    #to get the commandline tools shp2pgsql, raster2pgsql you need to do this
    sudo apt install postgis
    
    • 1
    • 2
    • 3
    • 4
    • 5
  2. 创建数据库
    sudo -u postgres createdb gis
    
    • 1
  3. 为数据库添加PostGIS扩展插件
    sudo -u postgres psql -d gis -c 'CREATE EXTENSION postgis;'
    sudo -u postgres psql -d gis -c 'CREATE EXTENSION postgis_topology;'
    
    • 1
    • 2
    这块根据你自己的需要,添加相应的扩展。
    在这里插入图片描述

使用示例

# 切换到postgres用户
su - postgres
# 连接数据库
psql
# 检查日志信息
\conninfo
# 列出所有的数据库
\l
# 连接到指定的数据库
\c database_name
# 列出所有的表
\d
# 退出
\q
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

参考资料

  1. HOW TO INSTALL AND USE POSTGRESQL 10 ON UBUNTU 16.04 LTS
  2. 离线部署
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/870456
推荐阅读
相关标签
  

闽ICP备14008679号