capsula-gemini/source/notes/postgres.gmi

31 lines
568 B
Plaintext

## Postgres
Instalar
```Instalar
sudo apt install postgresql
```
Configurar acceso
```Configurar acceso
sudo vim /etc/postgresql/12/main/pg_hba.conf
local all postgres trust
local all all scram-sha-256
sudo systemctl restart postgresql
```
Crear roles y bases de datos
```
psql -U postgres
create role ROLE_NAME with login encrypted password 'CONTRA';
create database NAME with owner ROLE_NAME;
```
=> gemini://elmau.net/chuletas.gmi Regresar el índice
=> gemini://elmau.net Regresar el inicio