Cargo Tomcat 7.X没有停止

时间:2015-11-20 22:37:10

标签: tomcat7 cargo

这是我用于货物的gradle文件中的配置。

 cargo {
   containerId = 'tomcat7x'
   port = httpPort.toInteger()

   local {
   homeDir = file(cargoHome)
   configHomeDir = file(cargoHome)
   jvmArgs = 'Dcom.sun.management.jmxremote.port=9092 
   -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -'

installer {
  installUrl = 'https://installdirectory/content/groups/public/org/apache/tomcat/tomcat/7.0.57/tomcat-7.0.57.zip'
  downloadDir = file("$buildDir/download")
  extractDir = file("$buildDir/extract")
}
containerProperties { property 'cargo.tomcat.ajp.port', portFinder.nextAvailable}
extraClasspath = files("../service/service-1.0.0-LOCAL-local.jar",configurations.cargoruntime)  }}

以下错误在运行cargoStopLocal任务时显示在日志中

警告:StandardServer.await:命令无效''收到 错误:代理抛出异常:java.rmi.server.ExportException:端口已在使用中:9092;嵌套异常是:     java.net.BindException:已在使用的地址:JVM_Bind 2015年11月20日下午4:32:34 org.apache.catalina.core.StandardServer等待 警告:StandardServer.await:无效的命令''接收

任何人都可以指导我如何处理这个问题,它不会停止货运服务器,所以我的构建失败了吗?

0 个答案:

没有答案