Created
November 4, 2015 14:36
-
-
Save nonZero/fb8519f1fd21d01a9bc7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
sudo apt-get install postgis postgresql-9.3-postgis-2.1 | |
sudo -iu postgres createuser proj123 -S -D -R | |
sudo -iu postgres createdb proj123 -O proj123 | |
sudo -iu postgres psql -c \"alter user proj123 with password 'proj123';\" | |
sudo -iu postgres psql proj123 -c \"CREATE EXTENSION postgis;\ | |
sudo -iu postgres psql proj123 -c \"CREATE EXTENSION postgis_topology;\"" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment