我正在尝试使用Backports在Debian Squeeze服务器上安装Postgresql 9.1,但在安装后我没有/ etc /
postgresql文件夹,而是我有一个/ etc / postgresql-common文件夹.
我知道这个问题很老了,但我偶然发现了同样的问题.
原文链接:https://www.f2er.com/postgresql/192466.html仔细看看apt-get install postgresql的输出我注意到输出首先说明我的语言环境设置有问题,在最终报告中,无法创建集群:
Error: The locale requested by the environment is invalid. Error: could not create default cluster. Please create it manually with pg_createcluster 9.1 main --start or a similar command (see 'man pg_createcluster').
为了最终解决问题,它有助于(重新)安装语言环境并重置语言环境配置.对我来说(使用debian 7.8系统)这是通过以下方式完成的:
apt-get install locales
要么
dpkg-reconfigure locales
如果它已经安装了.
最后重新安装整个postgresql服务器系统.对我来说这是
apt-get --purge remove postgresql postgresql-9.1 postgresql-common apt-get install postgresql postgresql-9.1 postgresql-common
我希望这将有助于将来某人比我做得更快:-)