Skip to content

Instantly share code, notes, and snippets.

@mofelee
Created August 4, 2015 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mofelee/f61b9566134dc4235401 to your computer and use it in GitHub Desktop.
Save mofelee/f61b9566134dc4235401 to your computer and use it in GitHub Desktop.
安装postgresql(ubuntu14.04)
#!/bin/sh
locale-gen zh_CN.UTF-8
apt-get update
echo 'deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main' > /etc/apt/sources.list.d/pgdg.list
# add key
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | \
apt-key add -
apt-get update
# install
apt-get install -y postgresql-9.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment