2

我有关于 Jenkins svn sheckout 的问题。我为我的问题找到了可能的解决方案,上面写着“使用 -Dsvnkit.http.sslProtocols="SSLv3" 启动 jenkins ”问题是我不知道该怎么做。Jenkins是tomcat6上的.war文件,在centos上运行。

提前致谢!

4

2 回答 2

0

You want to add this to CATALINA_OPTS in your tomcat start script. Depending on how your tomcat is installed, this could be a script in init.d or catalina.sh somewhere. I personally use a wrapper script to start Tomcat with Jenkins as a war.

Reference: https://serverfault.com/questions/139435/where-to-set-java-heap-options-e-g-xmx-for-tomcat-6-under-ubuntu-9-04

于 2013-07-29T16:18:23.337 回答
0

在 CentOS 中,您应该在以下位置添加自定义 JAVA 选项

/etc/sysconfig/jenkins

把你的参数放在一行:

JENKINS_JAVA_OPTIONS="-Djava.awt.headless=true -Dsvnkit.http.sslProtocols='SSLv3' "

并重启服务

服务詹金斯重启

这是最佳实践,您可以修改 catalina 脚本或 /etc/init.d/jenkins 脚本,但在 jenkins 升级后存在丢失更改的风险。

于 2013-10-10T09:07:47.707 回答