ubuntu中如何向tomcat传递参数?
我正在尝试将 CruiseControl 配置为使用 Tomcat 而不是 Jetty 作为其 servlet 引擎。我正在关注这方面的教程,但我被困在它说的地方:
将启动参数传递给tomcat。
-Ddashboard.config=/home/cruisecontrol/work/dashboard-config.xml
我应该将其放入 Tomcat 安装中的哪个文件中?是Tomcat目录下的startup.sh文件吗?
教程位于此处。
I am trying to configure cruisecontrol to use Tomcat rather than Jetty as its servlet engine. I am following a tutorial on this and I'm stuck at the point where it says:
Pass startup parameter to tomcat.
-Ddashboard.config=/home/cruisecontrol/work/dashboard-config.xml
Which file do I put this in in my Tomcat installation? Is it the startup.sh file in the Tomcat directory?
The tutorials are here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能需要放入 catalina.sh 文件中的 JAVA_OPTS 变量中。
This probably needs to go in the JAVA_OPTS variable, in the catalina.sh file.
每个应用程序服务器(例如 tomcat 和 weblogic)都必须有 config.xml。您可以传递 tomcat 服务器的 config.xml 中提到的启动参数。
You have to have config.xml with every appserver like tomcat and weblogic. You can pass the startup parameters as mentioned there in config.xml of tomcat server.
对于 Tomcat 7,应按照
catalina.sh
脚本中的说明在$CATALINA_BASE/bin/setenv.sh
中进行设置。With Tomcat 7, this should be set in
$CATALINA_BASE/bin/setenv.sh
as stated in thecatalina.sh
script.