Ubuntu Server下安装PostgreSQL

针对Ubuntu Server 12.04 LTS 版本

新建 /etc/apt/sources.list.d/pgdb.list 文件,加入以下内容

deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main

导入签名

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

更新apit

sudo apt-get update

安装最新的9.3版本

apt-get install postgresql-9.3

你可能感兴趣的:(ubuntu,PostgreSQL)