系统
- Ubuntu 20.04
- 阿里云
- 端口 5433 以及 5432 都开了
问题产生
-
使用
sudo apt-get install postgresql
之后使用systemctl
打开SQL服务。 -
指令
psql --version
验证安装,发现如题错误。
检查及修复
ps aux | grep post
-
发现没有回应,立即认为是出现了安装错误。
-
于是再次检查 sudo apt-get update 发现报错
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://apt.postgresql.org/pub/repos/apt focal-pgdg InRelease' doesn't support architecture 'i386'
-
于是修改文件
/etc/apt/sources.list.d/pgdg.list
-
将其修改为
deb [arch=amd64] http://apt.postgresql.org/pub/repos/apt focal-pgdg main
- 再次 apt-get update 发现没有错误,后续按照教程重新安装即可
来源地址:https://blog.csdn.net/qq_45403767/article/details/128233635