install and use postgis in debian/ubuntu

因为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


已发布

分类

来自

标签:

评论

《“install and use postgis in debian/ubuntu”》 有 1 条评论

  1. wlx 的头像
    wlx

    也可以这样添加帐号:
    sudo su postgres
    createuser -P
    然后创建一个和当前系统帐号相同的帐号

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注