English 中文(简体)
租户的皮条不终止
原标题:PsExec from ant does not terminate

我想开始并停止在遥远的窗口机器上安装一台散射服务器。 我希望能够用手稿来做到这一点(我们建筑服务器可以这样做)。

我没有能够用斜体解决问题,因为没有办法将用户名称和密码传给遥远的机器。

• 使用性皮卡进行远程服务器上的指挥。 我:

<target name="start_tomcat_server">
    <exec executable="psexec.exe" failonerror="true">
        <arg value="/accepteula"/>
        <arg value="\test_host"/>
        <arg value="-u"/>
        <arg value="username"/>
        <arg value="-p"/>
        <arg value="password"/>
        <arg value="net"/>
        <arg value="start"/>
        <arg value="tomcat6"/>
    </exec>
</target>

If I run this command from the command prompt, everything works fine:
psexec.exe /accepteula \test_host -u username -p password net start tomcat6

但是,当我执行ant目标时, p塞进程永远不会终止,它只是 output着这一产出:

start_tomcat_server:
     [exec]
     [exec] PsExec v1.98 - Execute processes remotely
     [exec] Copyright (C) 2001-2010 Mark Russinovich
     [exec] Sysinternals - www.sysinternals.com
     [exec]

我能做些什么来做这项工作?

最佳回答

在花费更多时间之后,我找到了解决办法。 计算参数——d至psexec,从标准中分离出来。

        ...
        <arg value="-d"/>
        ...

值得注意的是,在添加——d 时,皮涅茨将启动的进程退回到公投局,而不是0,这样ant的人就会认为指挥失败。

问题回答

暂无回答




相关问题
Tomcat´s server.xml dynamic configuration

My web application uses the same database configuration as the application XYZ. I have a resource declaration for a context in server.xml, so I have a duplicated configuration (once for web ...

session transfer issue from Tomcat to ASP.Net

I am using Tomcat to host JSP and using IIS 7.0 to host aspx (C# + .Net 3.5 + VSTS 2008), and I have some session transfer issue from JSP page to ASPX page. JSP page is in one domain and all other ...

JSP exception - class not found (tomcat)

I m setting up an existing application on a new Tomcat 5.5 server connecting to a Postgres database (running on Debian Lenny). When I access it I get a series of stack traces with the following root ...

热门标签