2021-11-02 23:32:26 +01:00
|
|
|
# Postgresql
|
|
|
|
|
|
|
|
Installer Postgresql :
|
|
|
|
```
|
|
|
|
apt-get install postgresql postgresql-contrib
|
2021-11-03 01:46:35 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Pour permettre des actions via `psql`, mettre un mot de passe au compte `postgresql` :
|
|
|
|
```
|
|
|
|
password postgresql
|
|
|
|
```
|