Update 'Install_PostgreSQL_14_and_PostGIS_3'

Kaimbacher 2022-06-30 14:31:33 +00:00
parent a2cc7ad71b
commit f073040cc1

@ -10,6 +10,14 @@ sudo apt update
sudo apt install postgresql postgresql-contrib sudo apt install postgresql postgresql-contrib
sudo apt install postgresql-14-postgis-3 postgresql-14-postgis-3-scripts sudo apt install postgresql-14-postgis-3 postgresql-14-postgis-3-scripts
``` ```
After installing PostgreSQL, the commands below can be used to stop, start, enable and check its status:
```bash
sudo systemctl stop postgresql.service
sudo systemctl start postgresql.service
sudo systemctl enable postgresql.service
sudo systemctl status postgresql.service
```
Viewing the server version\ Viewing the server version\
`/usr/lib/postgresql/12/bin/postgres -V` \ `/usr/lib/postgresql/12/bin/postgres -V` \