Инструменты пользователя

Инструменты сайта


сайты:debian_postgres

Это старая версия документа!


Debian Postgres

Подключение снаружи

/etc/postgresql/13/main/pg_hba.conf
host    all             all             0.0.0.0/0            md5
host    all             all             ::0/0                md5
/etc/postgresql/13/main/postgresql.conf
listen_addresses = '*'
systemctl restart postgresql

Установка psycopg2

apt install libpq-dev python3-dev gcc
pip install psycopg2

Пароль для пользователя postgres

sudo -u postgres psql
...
\q
ALTER USER postgres PASSWORD 'myPassword';

Создание пользователя, БД и прав на неё

postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;  
сайты/debian_postgres.1687160912.txt.gz · Последнее изменение: 2023.06.19 07:48 — feser