环境
Ubuntu 20.04 LTS
PostgresQL 14.1
说明
安装postgresql
服务器,配置远程访问。
步骤
安装postgresql
,参考 https://www.postgresql.org/download/linux/ubuntu/
1 | sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' |
查看版本
1 | sudo -u postgres psql -c "select version()"; |
配置角色(仅仅超级用户和拥有CREATEROLE
权限的角色可以创建新角色)
1 | # 登陆db |
配置远程访问,修改 /etc/postgresql/14/main/postgresql.conf
1 | listen_addresses = '*' |
修改/etc/postgresql/14/main/pg_hba.conf
1 | local all all peer |
重启服务
1 | sudo service postgresql restart |
连接数据库
1 | psql -U role_root -d test_db -W |