docker version portainer, jenkins, kibana Speaking Chinese interface

These software in conjunction with the use of English is not good but I always looked difficult, so the thought of a better display Chinese menu interface, a search online, but also a lot of information, and then follow the steps to do down, but fortunately, have to do so successfully a.

1 Portainer

How to install have said before, not repeat

First download the finished package, and then uploaded to the server.

download link: 

https://dl.quchao.net/Soft/Portainer-CN.zip

Uploaded to the server

// I'm here with this server path 
# mkdir -p / home / soft / portainer / plugins

Decompression

# cd mkdir -p /home/soft/portainer/plugins
# unzip Portainer-CN.zip.zip
# rm -rf Portainer-CN.zip.zip

# ls
css fonts ico images index.html js

Increase in hanging plate, the main directory is marked red

// 安装
# docker run --restart=always -d \
--name portainer  -p 9000:9000  \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/soft/portainer/data:/data \
-v /home/soft/portainer/plugins:/public \
profidata/portainer:1.22.0

 

Start to see results

 

 

 

 

 

 

 

2、jenkin

I have said before how to install, not repeat them.

Search Plug

In the system management --- Plug-in Manager --- optional plug-in search install plug " Locale plugin ", after the search to check the installation and restart jenkins

 

 

 

After the installation is complete, the system management - setting system --Locale

The default language, fill in the " zh_CN ", tick behind the Ignore option

 

 

See the results. Enter the address of your jenkins

 

 

 

 

 

 

3, kibana

How to install have said before, not repeat

Open the previously installed kibana profile

// Catalog 
# vi /home/soft/kibana/config/kibana.yml

Add the following configuration, mainly the

i18n.locale: "zh-CN"
VI kibana.yml # 
 // as follows, wherein the display is a Chinese CI i18n.locale: "the CN-ZH" 
a server.name: kibana 
server.host: " 0 " 
elasticsearch.hosts: [ " http://www.baidu .com: 9200 " , " http://www.baidu.com:9201 " ] 
# elasticsearch.username: " kibana " 
# elasticsearch.password: " kibana " 
server.port: 5601 
i18n.locale:" zh-CN "

Restart the service:

// did not install Setup Boot 
# Docker RUN --restart = Always -m 1000M \ -d -p 5601 : 5601 \ -v /home/soft/ELK/kibana/config/kibana.yml:/usr/share/kibana / config / kibana.yml \ --name kibana kibana: 7.1 . 1

installed //
# Docker restart kibana

Login service to see results:

Guess you like

Origin www.cnblogs.com/a393060727/p/12598570.html