標籤:
原文:http://lovewinner.iteye.com/blog/1490915
安裝postgresql
[plain] view plain copy
- sudo apt-get install postgresql-9.1 postgresql-contrib-9.1
其中postgresql-contrib-9.1不是必須要安裝的,如果不安裝,以後使用pgadmin開啟資料庫時可能會提示安裝以使用啥啥啥功能。嫌麻煩的話就一起安裝了吧。
如果要安裝其他版本的postgresql,可以用
[plain] view plain copy
- sudo apt-cache search postgresql
查詢
安裝postgis
[plain] view plain copy
- sudo apt-get install postgresql-9.1-postgis
該安裝的都安裝上了, postgresql已經可以使用,如果要建立一個postgis資料庫,還要進行下列步驟:
產生postgis模板庫
切換到postgres使用者
[plain] view plain copy
- sudo su postgres
建立庫postgis_template
[plain] view plain copy
- createdb postgis_template
執行postgis指令碼,這些指令碼預設在/usr/share/postgresql/9.1/contrib/postgis-1.5下
[plain] view plain copy
- psql -d postgis_template -f /usr/share/postgresql/9.1/contrib/postgis-1.5/postgis.sql
- psql -d postgis_template -f /usr/share/postgresql/9.1/contrib/postgis-1.5/spatial_ref_sys.sql
修改使用者密碼
[plain] view plain copy
- psql
- ALTER USER postgres WITH PASSWORD ‘111111‘;
PostgreSQL資料庫的安裝與PostGIS的安裝(轉)