Docker下CentOS中文乱码问题处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.
本文出自 “枫林晚” 博客,请务必保留此出处http://fengwan.blog.51cto.com/508652/1891063
以上是关于Docker下CentOS中文乱码问题处理的主要内容,如果未能解决你的问题,请参考以下文章