因为postgis已经进入debian的库了,就把原来用source安钻的postgresql和postgis都删除掉,然后从库中安装。
aptitude install postgresql-8.1-postgis
然后再创建数据库,并作相应的初始化工作:
createlang plpgsql yourdatabase
psql -f `locate lwpostgis.sql` -d yourdatabase
psql -f `locate spatial_ref_sys.sql` -d yourdatabase
最后再添加一个超级用户:
create user xxx with password ‘passwd’ createuser createdb
发表回复