2021-05-12 14:32:11
Docker下CentOS中文亂碼問題處理
使用Docker pull CentOS,完了之後映象無法顯示中文問題。
FROM centos
MAINTAINER fengwan.blog.51cto.com
RUN rm -rf /etc/localtime && ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #修改時區
RUN yum -y install kde-l10n-Chinese && yum -y reinstall glibc-common #安裝中文支援
RUN localedef -c -f UTF-8 -i zh_CN zh_CN.utf8 #設定顯示中文
ENV LC_ALL zh_CN.utf8 #設定環境變數
RUN yum -y install Python-setuptools && easy_install pip && pip install supervisor #安裝supervisor多進程管理工具,用於啟動多進程
可將以上檔案作為dockerfile的初始部分
如果是實體機的話執行以下命令即可
yum -y install kde-l10n-Chinese && yum -y reinstall glibc-common
localedef -c -f UTF-8 -i zh_CN zh_CN.utf8
export LC_ALL=zh_CN.utf8
以上就可以解決Zabbix
You are not able to choose some of the languages, because locales for them are not installed on the web server.
更多Docker相關教學見以下內容:
Docker安裝應用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm
Ubuntu 14.04安裝Docker http://www.linuxidc.com/linux/2014-08/105656.htm
Ubuntu使用VNC執行基於Docker的桌面系統 http://www.linuxidc.com/Linux/2015-08/121170.htm
阿里雲CentOS 6.5 模板上安裝 Docker http://www.linuxidc.com/Linux/2014-11/109107.htm
Ubuntu 15.04下安裝Docker http://www.linuxidc.com/Linux/2015-07/120444.htm
在Ubuntu Trusty 14.04 (LTS) (64-bit)安裝Docker http://www.linuxidc.com/Linux/2014-10/108184.htm
在 Ubuntu 15.04 上如何安裝Docker及基本用法 http://www.linuxidc.com/Linux/2015-09/122885.htm
Ubuntu 16.04上Docker使用手記 http://www.linuxidc.com/Linux/2016-12/138490.htm
相關文章