Kettle web version (webspoon) Chinese deploy kettle page edit kettleweb Chinese

web spoon Chinese switch

github address: https://github.com/HiromuHota/pentaho-kettle

web version installation

image-20220928084838084

install command

docker run -d -p 8080:8080 hiromuhota/webspoon

image-20220928085112599

It can be seen that it has been installed

image-20220928085131288

Page access, you can see that it is now in English

image-20220928085234200

Start Sinicization

Enter the webspoon container

# f4bb1f5f06e4 为容器id

docker exec -it -u 0 f4bb1f5f06e4 /bin/bash

image-20220928085406432

# 进入 Tomcat 的 bin目录 可以看到有一个 setenv.sh 的Tomcat 环境变量配置脚本
cd bin/

image-20220928085545842

install vim

#编辑这个文件 发现 vi: command not found
root@f4bb1f5f06e4:/usr/local/tomcat/bin# vi setenv.sh
bash: vi: command not found
root@f4bb1f5f06e4:/usr/local/tomcat/bin# 

image-20220928085853964

execute command 1

# 清空/etc/apt/sources.list文件
 echo > /etc/apt/sources.list

image-20220928090219795

execute command 2

echo -e "deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib \ndeb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib \ndeb http://mirrors.aliyun.com/debian-security stretch/updates main \ndeb-src http://mirrors.aliyun.com/debian-security stretch/updates main \ndeb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib \ndeb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib \ndeb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib \ndeb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib" > /etc/apt/sources.list

image-20220928090306157

execute command 3

#更新软件列表 这个过程可能会有点慢 耐心等待
apt-get update

image-20220928090338885

execute command 4

apt-get install -y libtinfo5 --allow-remove-essential

image-20220928090636078

execute command 5

apt-get install -y vim

image-20220928090708762

edit setenv.sh again

cd /usr/local/tomcat/bin
vim setenv.sh

image-20220928090807768

Chinese configuration

Append these two configuration saves at the end of the file

CATALINA_OPTS="-Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true"
JAVA_OPTS="-Duser.language=zh -Duser.region=CN -Dfile.encoding=UTF-8"

image-20220928091220593

image-20220928091247119

# 查看是否编辑成功
cat setenv.sh
# 退出容器
exit;

# 查看容器
docker ps

# 重启容器
docker restart f4bb1f5f06e4

image-20220928091410320

The restart is successful and the address is Chinese again successfully

image-20220928091459057

Guess you like

Origin blog.csdn.net/qq_37349379/article/details/127082840