首先安装postgresql:
sudo apt-get install postgresql
然后安装php5的postgresql支持库:
sudo apt-get install php5-pgsql
然后添加用户和数据库:
sudo -u postgres createuser -A -D -P yernsun sudo -u postgres createdb -O yernsun yerncms
重启apache:
sudo /etc/init.d/apache2 restart