Ubuntu安装PostgreSQL、并使用OmniDB查看

1:查看待安装postgreSQL版本信息

apt show postgresql

Ubuntu安装PostgreSQL、并使用OmniDB查看

2:安装 postgresql

sudo apt update
sudo apt install postgresql postgresql-contrib

3: 查看安装的版本

 sudo -u postgres psql -c "SELECT version();"

Ubuntu安装PostgreSQL、并使用OmniDB查看

4:密码设置

  • 在Ubuntu下安装Postgresql后,会自动添加一个名为postgres的操作系统用户,密码是随机的。并且会自动生成一个名字为postgres的数据库,用户名也为postgres,密码也是随机的。

设置数据库密码sudo -u postgres psql

Ubuntu安装PostgreSQL、并使用OmniDB查看

 设置postgres的操作系统用户

sudo passwd -d postgres 

  • passwd -d 是清空指定用户密码的意思

sudo -u postgres passwd

  • 输入新的 Ubuntu密码
  • 重新输入新的 Ubuntu密码
  • passwd:已成功更新密码

 5:修改PostgresSQL数据库配置实现远程访问

vi /etc/postgresql/13/main/postgresql.conf

Ubuntu安装PostgreSQL、并使用OmniDB查看

 #listen_addresses=’localhost’ 改为listen_addresses=’*’ (’#’号注释不要,localhost改为’*’,接受为任何连接)

6:修改pg_hba.conf文件

此文件为数据库的连接配置文件,用来限制或允许什么样的地址以什么样的访问方式可以访问postgreSQL。

vi /etc/postgresql/13/main/pg_hba.conf 

host all all 0.0.0.0/0 md5

Ubuntu安装PostgreSQL、并使用OmniDB查看 

 7:omnidb客户端数据库管理工具查看

Ubuntu安装PostgreSQL、并使用OmniDB查看

 Ubuntu安装PostgreSQL、并使用OmniDB查看

 

 

上一篇:sed


下一篇:linux添加用户带root权限