本文共 827 字,大约阅读时间需要 2 分钟。
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 updateInstall 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-13 注意:我是在0.87F3版本上安装的,其他低的版本,需要去掉sudo执行以上命令PostgreSQL的默认会创建一个postgres账号,所以我们要切换账号:
su postgres创建数据簇:
pg_createcluster 13 main --start改权限:
chmod -R 700 /etc/ssl/private/ssl-cert-snakeoil.key启动
/etc/init.d/postgresql start 你可用命令 psql 测试参考 了官网:https://www.postgresql.org/download/linux/debian/
转载地址:http://pldo.baihongyu.com/