Tag - postgres - liczba wpisów 1

Postgrep - Install od Debian Kategoria: MySQL i inne bazy | Tagi: postgres | Autor: Bartłomiej Gałęzia

aptitude install postgresql postgresql-contrib php-pgsql

check version

sudo -u postgres psql -c "SELECT version();"
vim /etc/postgresql/11/main/pg_hba.conf
local all postgres trust
service postgresql restart
sudo su - postgres -c "createuser miethek" //create user
sudo su - postgres -c "createdb empg" //create db
GRANT ALL PRIVILEGES ON DATABASE empg TO miethek;

Połączenie z innych adresów:

vim /etc/postgresql/11/main/postgresql.conf
listen_addresses = '*'
vim /var/lib/pgsql/data/pg_hba.conf
host  all  all 0.0.0.0/0 md5
service postgresql restart

Źródło: https://linuxize.com/post/how-to-install-postgresql-on-debian-10/

Wyszukaj

Zapisz się do newsletera