【postgresql初始化失败】initdb: invalid locale settings; check LANG and LC_* environment variables
生活随笔
收集整理的這篇文章主要介紹了
【postgresql初始化失败】initdb: invalid locale settings; check LANG and LC_* environment variables
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
initdb: invalid locale settings; check LANG and LC_* environment variables
?
背景
在安裝數據庫成功之后,使用命令,對數據庫進行初始化
service postgresql initdb報錯
Hint: the preferred way to do this is now "/usr/bin/postgresql-setup --initdb --unit postgresql"* Initializing database in '/var/lib/pgsql/data' ERROR: Initializing database failed, possibly see /var/lib/pgsql/initdb_postgresql.log [root@XX]# cat /var/lib/pgsql/initdb_postgresql.log The files belonging to this database system will be owned by user "postgres". This user must also own the server process.initdb: invalid locale settings; check LANG and LC_* environment variables排查原因
原來是沒有中文字符集
locale -a|grep zh解決辦法
yum install glibc-common yum install -y langpacks-zh_CN source /etc/locale.conf結果
再次查看
locale -a|grep zh就有中文字符集了。?
重新初始化數據庫。
?成功
_____
2021-12-10 若上面的方法無法解決增加新的解決辦法
【postgresql初始化失敗】initdb: invalid locale settings; check LANG and LC_* environment variables(之二)_康雨城-CSDN博客
總結
以上是生活随笔為你收集整理的【postgresql初始化失败】initdb: invalid locale settings; check LANG and LC_* environment variables的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LeetCode - 4. 寻找两个正序
- 下一篇: 【解决pip install 安装报错】