ant自動包上傳 部署



<!-- 遠程自動部署腳本 -->
<!-- 提示:該腳本可以實現自動部署到遠程主機 -->
<project name="AOSuite" default="remote-tomcat-start" basedir="../../../">
    
    <property name="host_name" value="192.168.6.88" />  
    <property name="uname" value="root" />  
    <property name="password" value="qwer`123" />  
    <property name="tomcat.home" value="/usr/local/tomcat/tomcat8282" />  
    <property name="sleep.time" value="10" />
    
    <target name="remote-tomcat-stop">  
        <echo message="remote tomcat stopping" />
        <sshexec failοnerrοr="no" host="${host_name}" username="${uname}"  password="${password}" command=" kill -9 `pstree -ap|grep tomcat8282 | cut -c10-14`" trust="true" />  
        <sleep seconds="${sleep.time}" />
    </target>
    <target name="remote-tomcat-backup" depends="remote-tomcat-stop">  
        <echo message="remote tomcat backupping" />
        <sshexec host="${host_name}" username="${uname}"  password="${password}" command="cp ${tomcat.home}/webapps/ZB-RC.war ${tomcat.home}/wars_bak/`date '+%Y-%m-%d_%H:%M:%S'`_ZB-RC.war" trust="true" />  
    </target>
    <target name="remote-tomcat-del" depends="remote-tomcat-backup">  
        <echo message="remote tomcat delling" />
        <sshexec host="${host_name}" username="${uname}"  password="${password}" command="rm -rf ${tomcat.home}/webapps/ZB-RC*" trust="true" />  
    </target>
    <target name="copy-tomcat-dist" depends="remote-tomcat-del">  
        <echo message="remote tomcat copping" />
        <scp file="dist/ZB-RC.war" username="${uname}" password="${password}" todir="${uname}:${password}@${host_name}:/usr/local/tomcat/tomcat8282/webapps/"
             trust="true" sftp="true"
        />  
    </target>  
    <target name="remote-tomcat-start" depends="copy-tomcat-dist">  
        <echo message="remote tomcat startting" />
        <sshexec host="${host_name}" username="${uname}"   
            password="${password}" command="cd ${tomcat.home}/bin;sh startup.sh;" trust="true" />  
        <sleep seconds="${sleep.time}" />  
    </target>
    
    
</project>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章