在Ubuntu 20.04上安装PostgreSQL
关于系统
User@hs:~$ uname -a
Linux hs 5.13.0-28-generic #31~20.04.1-Ubuntu SMP Wed Jan 19 14:08:10 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
安装必要的软件包。
sudo apt update
sudo apt install wget ca-certificates
将GPG密钥导入系统的存储库签名
wget -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
创建适用于PostgreSQL的PPA文件
脚本
sudo sh -c ‘echo “deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main” >> /etc/apt/sources.list.d/pgdg.list’
使用bash命令安装PostgreSQL。
sudo apt-get安装postgreSQL和postgreSQL-contrib软件包。
启动和确认PostgreSQL。
用 Systemd 来检查 PostgreSQL 的状态。
以超级管理员权限运行指令 systemctl 状态 postgresql。
切换到PostgreSQL账户
sudo -i -u postgres
你可以使用以下命令来访问PostgreSQL的提示符。
终端
psql
在中国的母语中,以下是对上述句子进行的一个更改版本:
关闭PostgreSQL
bash
postgres=# \q