centos7 安装kettle 并实现图形化界面

Posted 袁义锐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 安装kettle 并实现图形化界面相关的知识,希望对你有一定的参考价值。

说实在的,在centos上实现kettle图形化,有点脱裤子放屁的感觉;话不多说干起来;

本案例采用了kettle官网的pdi-ce-9.0.0.0-423.zip 版本;centos7 图形化工具为VNC-Server

 

  • 一:部署kettle

1.上传后,解压文件到指定目录

unzip pdi-ce-9.0.0.0-423.zip -d /data/software/

2. 进入:/data/software/data-integration 启动

./kitchen.sh

3.安装centos图形化界面工具;一般来说centos7 不能直接使用./spoon.sh 命令

#安装
yum install tigervnc-server -y
yum groups install GNOME
yum groups install  "Virtualization Hypervisor"  "Virtualization Platform" "Virtualization Tools" "Virtualization Client" "Virtualization"



#拷贝vnc server配置文件。vncserver@:1 这个1是接下来的步骤中要使用的

cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service



#编辑文件,添加如下配置项目
vim /etc/systemd/system/vncserver@:1.service


[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=forking
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i"
PIDFile=/root/.vnc/%H%i.pid
ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

[Install]
WantedBy=multi-user.target


4.重新加载服务配置文件,并添加连接密码,并启动vnc服务

#重新加载某个服务的配置文件
systemctl daemon-reload


#添加密码
vncpasswd


#启动服务
vncserver

5.通过本地的VNC Viewer 做远程连接;或者其他工具,如tightvnc;在打开的客户端工具中添加vnc server 开通的连接地址:这里的“1”和第三步呼应,101.25.75.121 是我部署kettle的centos服务器

101.25.75.121:1

6. 在vncviewer 中开启图形服务:一般是鼠标右键桌面,使用“Opem terminal”任务栏

./spoon.sh

 

 

  • 问题以及解决办法:

1.执行./kitchen 有异常:

会出现的警告:No libwebkitgtk1.0 detected.......

解决办法:

安装: yum -ivh webkitgtk-2.4.9-1.el7.x86_64.rpm 

下载地址:http://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/matthewdva:/build:/EPEL:/el7/RHEL_7/x86_64/webkitgtk-2.4.9-1.el7.x86_64.rpm

 

 

 

 

 

以上是关于centos7 安装kettle 并实现图形化界面的主要内容,如果未能解决你的问题,请参考以下文章

centos7安装图形化界面并远程连接

CentOS7没有图形化界面,怎么安装图形化界面

CentOS7安装图形化界面方法

CentOS7.2安装VNC,让Windows远程连接CentOS 7.2 图形化界面

vmware centos7安装GNOME图形化界面

如何在centos上安装samba图形界面