如何使用 Ant 连接到远程服务器并启动/停止在该特定服务器上运行的 Tomcat?



目的是:

1: connect to a remote server maybe via host: ip , port: 8181
2: stop Tomcat that's running on that server 
3: deploy a .war file 
4: restart tomcat 

我相信Tomcat文档在监视和管理Tomcat下提供了一些有关如何停止给定应用程序的信息,但不是完全停止服务器:

<jmx:invoke
    name="Catalina:type=Manager,path=/servlets-examples,host=localhost" 
    operation="stop"/>

如果您对服务器具有 ssh 访问权限,那么您可能需要考虑 JSch 库,您可以将它与 SSHExec Ant Task 结合使用来启动和停止服务器:

<sshexec host="somehost"
    username="dude"
    password="yo"
    command="/etc/init.d/tomcat restart"/>

相关内容

  • 没有找到相关文章

最新更新