20

我在 Ubuntu 上的 Digital River 上托管了一个 Postgres 数据库,并按照以下说明进行安装

但是语言环境设置有问题,我不知道如何修复它。当我运行 psql 命令时,出现以下错误:

postgres@assay:/home/deployer$ psql
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "en_US:en",
LC_ALL = (unset),
LC_CTYPE = "UTF-8",
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
psql (9.1.9)
4

2 回答 2

32

非常感谢 Digital River 论坛上的 Kamal Nasser 提供了正确答案(以下命令需要 root 权限):

$ locale-gen en_US en_US.UTF-8 
$ dpkg-reconfigure locales

我认为这是原始答案的正确链接:Digital Ocean 网站没有响应,所以我无法检查。 https://www.digitalocean.com/community/questions/postgresql-and-rails-4

于 2013-07-17T14:38:28.603 回答
12

尝试 ardochhigh 的回答后:

$ sudo locale-gen en_US en_US.UTF-8 
$ sudo dpkg-reconfigure locales

问题仍然存在

之后,我看到了为我解决问题的答案:

https://www.digitalocean.com/community/questions/language-problem-on-ubuntu-14-04

Aparently LAGUAGE shell 变量未设置:

$ sudo bash

$ export LANGUAGE="en_US.UTF-8"
$ echo 'LANGUAGE="en_US.UTF-8"' >> /etc/default/locale
$ echo 'LC_ALL="en_US.UTF-8"' >> /etc/default/locale

$ # next: logout and login
于 2016-02-29T23:13:56.353 回答