加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

postgresql , postgis 安装

发布时间:2020-12-13 17:50:17 所属栏目:百科 来源:网络整理
导读:root权限下安装 1.安装postgresql 和 postgis # apt-get install postgresql-8.4 postgresql-8.4-postgis 2.安装完成后会自动生成postgres 账号,进入postgres账号 #su postgres 3.执行psql,进入postgres模式 #psql postgres 4.在postgres模式下修改密码,

root权限下安装

1.安装postgresql 和 postgis

# apt-get install postgresql-8.4 postgresql-8.4-postgis

2.安装完成后会自动生成postgres 账号,进入postgres账号

#su postgres

3.执行psql,进入postgres模式

#psql postgres

4.在postgres模式下修改密码,注意执行语句后以分号结尾,

#ALTER USER postgres with PASSWORD ' 123456';

执行正常会显示 ALTER ROLE

5.postgres模式下退出

#q

6.在postgres用户下,非数据库命令模式,创建需要用的gis0020库

psql -U postgres -c "CREATE DATABASE gis0020 WITH TEMPLATE = template0 ENCODING = 'UTF8';"

createlang -U postgres plpgsql gis0020

psql -U postgres -d gis0020 -f /usr/share/postgresql/8.4/contrib/postgis.sql

psql -U postgres -d gis0020 -f /usr/share/postgresql/8.4/contrib/spatial_ref_sys.sql

7.在postgres用户下,进入gis0020数据库

#psql -U postgres -d gis0020

8.查看数据库下的表

#d

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读