##接上篇,上篇講述了postgresql的安裝,此篇介紹postgis的安裝
#網上資料說,由於2.0中引入了gdal和json等依賴關係,postgis有很多依賴關係,因此安裝之前需要先安裝依賴項。
[root@psql_master ~]# yum -y install epel-release
#版本號格式為:_前為postgis版本,後面為postgresql版本(這裡是網上的說法,暫時還沒驗證,本想裝postgis2.2,可是這個命令下裝的是2.4,具體什麼原因待研究)
[root@psql_master ~]# sudo yum install postgis2_94
#實驗證明如果要裝postgis2.2版本,可以命令改為
#安裝完postgis後,並不表示可以使用空間資料庫功能了,需要先啟用資料庫上的postgis功能,然後才能儲存空間資料
1)先切換到使用者
[root@psql_master ~]# sudo -i -u postgres
2)建立測試使用者/資料庫
-bash-4.2$ createuser test_user
-bash-4.2$ createdb test_db -o test_user
#上面建立test_db命令 -o是英文本母o,不是零
3)連線到測試資料庫
-bash-4.2$ psql -d test_db
4)在資料庫上啟用postgis擴充套件
test_db=# create extension postgis;
5)驗證
#arcsde連postgis,與windows下無異,參照方法二)
PostGIS教程二 PostGIS的安裝
目錄 二 安裝postgresql 三 安裝postgis 在安裝postgis前首先必須安裝postgresql,然後在安裝好的stack builder中選擇安裝postgis元件。這裡使用的postgresql版本是9.6。安裝postgresql安裝完成後,提示執行stack builder...
PostGIS教程二 PostGIS的安裝
目錄 二 安裝postgresql 三 安裝postgis 在安裝postgis前首先必須安裝postgresql,然後在安裝好的stack builder中選擇安裝postgis元件。這裡使用的postgresql版本是9.6。安裝postgresql安裝完成後,提示執行stack builder...
PostGIS 安裝教程(Linux)(一)
本文分兩部分,第一部分講linux下postgresql的安裝,第二部分講postgis的安裝 centos7 x86 64 postgresql9.4 postgis2.4 root psql master yum install 可以在 上找對應版本 yum安裝postgresql,缺省會建乙個...