在linux平台安装kettle出现问题的解决办法

1、
启动spoon.sh时报如下错误信息:
# Core dump written. Default location: /kettle/data-integration/core or core.1812
#
# An error report file with more information is saved as:
# /tmp/jvm-1812/hs_error.log
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
#   http://icedtea.classpath.org/bugzilla
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.

解决办法:
[root@ETLtest data-integration]# vi ~/.kettle/.spoonrc
ShowWelcomePageOnStartup=N
~
~保存退出,重新启动spoon.sh脚本

~
2、
配置 表输入 时 kettle crash掉,报如下错误:
java: cairo-misc.c:380: _cairo_operator_bounded_by_source: Assertion `NOT_REACHED' failed.

解决办法:
编辑spoon.sh 文件,在变量
OPT="$OPT $PENTAHO_DI_JAVA_OPTIONS -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 -Djava.library.path=$LIBPATH -DKETTLE_HOME=$KETTLE_HOME -DKETTLE_REPOSITORY=$KETTLE_REPOSITORY -DKETTLE_USER=$KETTLE_USER -DKETTLE_PASSWORD=$KETTLE_PASSWORD -DKETTLE_PLUGIN_PACKAGES=$KETTLE_PLUGIN_PACKAGES -DKETTLE_LOG_SIZE_LIMIT=$KETTLE_LOG_SIZE_LIMIT -DKETTLE_JNDI_ROOT=$KETTLE_JNDI_ROOT"

添加:  -Dorg.eclipse.swt.internal.gtk.cairoGraphics=false,添加之后:
OPT="$OPT $PENTAHO_DI_JAVA_OPTIONS -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 -Djava.library.path=$LIBPATH -DKETTLE_HOME=$KETTLE_HOME -DKETTLE_REPOSITORY=$KETTLE_REPOSITORY -DKETTLE_USER=$KETTLE_USER -DKETTLE_PASSWORD=$KETTLE_PASSWORD -DKETTLE_PLUGIN_PACKAGES=$KETTLE_PLUGIN_PACKAGES -DKETTLE_LOG_SIZE_LIMIT=$KETTLE_LOG_SIZE_LIMIT -DKETTLE_JNDI_ROOT=$KETTLE_JNDI_ROOT -Dorg.eclipse.swt.internal.gtk.cairoGraphics=false"

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30623428/viewspace-2020746/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/30623428/viewspace-2020746/

你可能感兴趣的:(在linux平台安装kettle出现问题的解决办法)