linux 下启动tomcat的两种方式(-你的样子)

<project name="tomcat" basedir=".">


    <taskdef resource="net/sf/antcontrib/antlib.xml">
        <classpath>
            <pathelement location="${basedir}/lib/ant-contrib-1.0b3.jar" />
        </classpath>
    </taskdef>

    <target name="linux.start.tomcat" description="starts tomcat in the current console linux">
        <if>
            <not>
                <socket server="localhost" port="8009" />
            </not>
            <then>
                <echo message="start tomcat..." />
                <java classname="org.apache.catalina.startup.Bootstrap" spawn="yes" fork="yes">
                    <arg value="start" />
                    <classpath>
                        <pathelement path="${java.home}/lib/tools.jar" />
                        <pathelement path="./bin/bootstrap.jar" />
                    </classpath>
                </java>
                <waitfor maxwait="5" maxwaitunit="minute" checkevery="2" checkeveryunit="second">
                    <and>
                        <socket server="localhost" port="8009" />
                    </and>
                </waitfor>
            </then>
        </if>
    </target>

    <target name="linux.stop.tomcat" description="stop tomcat in the current console linux">
        <if>
            <socket server="localhost" port="8009" />
            <then>
                <echo message="stop tomcat..." />
                <java classname="org.apache.catalina.startup.Bootstrap" fork="yes">
                    <arg value="stop" />
                    <classpath>
                        <pathelement path="${java.home}/lib/tools.jar" />
                        <pathelement path="${basedir}/bin/bootstrap.jar" />
                    </classpath>
                </java>
                <waitfor maxwait="2" maxwaitunit="minute" checkevery="2" checkeveryunit="second">
                    <not>
                        <socket server="localhost" port="8009" />
                    </not>
                </waitfor>
            </then>
        </if>
    </target>


    <target name="start.tomcat">
        <exec dir="${basedir}/bin" executable="bash">
            <env key="CATALINA_HOME" path="${basedir}" />
            <arg value="startup.sh" />
        </exec>
    </target>

    <target name="stop.tomcat">
        <exec dir="${basedir}/bin" executable="bash">
            <env key="CATALINA_HOME" path="${basedir}" />
            <arg value="shutdown.sh" />
        </exec>
    </target>


</project>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值