Uninstall old version
sudo dpkg--purge PostGIS Postgresql-9.3-postgis
1. Install Postgresql$sudo Apt-cache Search PostgreSQL//Find the latest PostgreSQL package $sudo gem apt-get install PostgreSQL package name//select Package name for installation
2. Set Postgres user password
sudo passwd postgres3, landing PostgreSQL,
$sudo-U postgres psql
4. Connecting PostgreSQL and PostGIS (the ability to give the PostgreSQL spatial database)
$ create EXTENSION PostGIS; (Note whether you want to create it under your own database)
CREATE EXTENSION
$ CREATE EXTENSION postgis_topology; (Support topology)
CREATE EXTENSION
Error occurred
postgres=# CREATE EXTENSION PostGIS; ERROR: "/usr/share/postgresql/9.3/extension/postgis.control": No such File or Directorypostgres=# SELECT version ();
Solution Reference: Http://gis.stackexchange.com/questions/71302/error-when-trying-to-run-create-extension-postgis
sudo apt-get Install postgis*
Re-run
CREATE EXTENSION PostGIS;
CREATE EXTENSION postgis_topology;
Results are normal.
Restarting the database service
sudo service postgresql restart
Configuring remote connections
1. Modify the postgresql.conf file to modify the listening mode of the database server to listen for connection requests made by all hosts.
Navigate to #listen_addresses= ' localhost '. After the PostgreSQL installation is complete, the default is to accept only connection requests that come in native localhost.
Remove line start # and modify line content to listen_addresses= ' * ' to allow the database server to listen for connection requests from any host
2. Modify the pg_hba.conf file to configure the user's access rights (#开头的行是注释内容):
- # TYPE DATABASE USER cidr-address METHOD
- # "Local" is for Unix domain sockets connections only
- Local all All trust
- # IPV4 Local connections:
- Host All 127.0.0.1/32 Trust
- Host All 192.168.1.0/24 MD5
- # IPV6 Local connections:
- Host all:: 1/128 Trust
7th is the newly added content that allows all hosts on the network segment 192.168.1.0 to access the database using all legitimate database usernames and provide encrypted password authentication.
Where the number 24 is the subnet mask, which means that the 192.168.1.0--192.168.1.255 computer is allowed access
Pgadmin connection after configuration complete, error occurred:
error connecting to Server:FATAL:password authentication failed for user Postgres
Workaround:
Using sudo-u postgres psql,
sudo -u postgres psql
login password 'postgres';
Changes will be successful with "ALTER ROLE" hint
Then use pgadmin to connect to the database OK
Ubuntu under Postgre and PostGIS installation