进行PostgreSQL的安装配置
安装
sudo apt install postgresql
# citext用
sudo apt install postgresql-contrib
创建DB和用户
$ sudo su postgres
$ psql
> create database db_name;
> create user k0kubun with password '*******';
> grant all privileges on database db_name to k0kubun;
$ psql db_name
> create extension citext;
请注意地址变更。
将以下配置添加到/etc/postgresql/12/main/postgresql.conf文件中。
#listen_addresses = 'localhost'
listen_addresses = '*'
连接来源的设置
在 `/etc/postgresql/12/main/pg_hba.conf` 文件中添加以下设置。
host all all 123.321.123.321/32 md5
最后重新启动PostgreSQL。