我需要为多个服务器创建Ant构建的建议。我有大约25台服务器。如果可能的话,我想通过运行ant一次为所有服务器实现部署war文件。我有以下问题需要考虑
答案 0 :(得分:2)
你可以手动编写逻辑代码来在Ant中执行此操作,但根据服务器配置的不同,它可能会有很多工作。相反,我建议您使用适当的配置管理工具(例如Chef或Puppet)来自动部署,只需使用Ant来构建已部署的文件。
答案 1 :(得分:2)
我有同样的目标。
您可以编写maven脚本,以便在Jayan
提到的Jenkins上设置持续集成或者你可以像你提到的那样创建一个ANT脚本。
<!-- Define custom properties -->
<property name="build.dir" location="${basedir}/target" />
<property name="host.dev" value="YOUR IP" />
<property name="host.live" value="YOUR IP 2" />
<property name="ssh.timeout" value="60000" />
<property name="username.dev" value="username" />
<property name="username.live" value="username 2" />
<property name="password.dev" value="password" />
<property name="password.live" value="password 2" />
创建自己的ssh macrodef任务以使用ssh命令:
<!-- Define ssh commands sshexec -->
<macrodef name="ssh_cmd">
<attribute name="host" />
<attribute name="command" />
<attribute name="usepty" default="false" />
<attribute name="username" />
<attribute name="password" />
<sequential>
<echo>Executing command : @{command} on @{username}@@@{host}</echo>
<sshexec host="@{host}" failonerror="true" username="@{username}" password="@{password}" timeout="${ssh.timeout}" command="@{command}" usepty="@{usepty}" trust="true" />
</sequential>
</macrodef>
向您的服务器发送命令,如:
<ssh_cmd host="${host.dev}" command="YOUR COMMAND (ex: sudo start yourservice onlinux)" username="${username.dev}" password="${password.dev}"/>
不要忘记使用以下内容导入sshexec / scp ant任务:
<property environment="env" />
<taskdef resource="net/jtools/classloadertask/antlib.xml">
<classpath>
<fileset dir="${ant.home}/lib" includes="ant-classloader*.jar" />
</classpath>
</taskdef>