Created
August 4, 2015 23:14
-
-
Save mofelee/f61b9566134dc4235401 to your computer and use it in GitHub Desktop.
安装postgresql(ubuntu14.04)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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