欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu20.04 安装 配置 postgresql

程序员文章站 2022-07-14 20:12:55
...

一、以下为官网安装信息

Create the file repository configuration:

sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

Import the repository signing key:

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

Update the package lists:

sudo apt-get update

Install the latest version of PostgreSQL.
If you want a specific version, use ‘postgresql-12’ or similar instead of ‘postgresql’:

sudo apt-get -y install postgresql

官网:https://www.postgresql.org/download/linux/ubuntu/

二、远程登录配置

查找配置文件路径

sudo find / -name postgresql.conf
sudo find / -name pg_hba.conf

postgresql.conf

listen_addresses = '*'

pg_hba.conf

host  all   all   0.0.0.0/0    md5

参考:https://www.cnblogs.com/sunhongleibibi/p/11943393.html#top

三、设置postgres用户密码

登录PostgreSQL

sudo -u postgres psql

修改登录PostgreSQL密码

ALTER USER postgres WITH PASSWORD 'postgres';

注:
密码postgres要用引号引起来
命令最后有分号

退出PostgreSQL客户端

\q

四、修改postgres用户密码

删除用户postgres的密码

sudo  passwd -d postgres

设置用户postgres的密码

sudo -u postgres passwd

系统提示输入新的密码

Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully

参考:https://www.cnblogs.com/kaituorensheng/p/4735191.html