远程PowerShell脚本完成后如何使进程保持活动状态?

时间:2016-09-26 11:54:43

标签: c# powershell solr apache-zookeeper

我试图通过PowerShell scriptblock远程启动Zookeeper和Solr。 然后我看到进程是在远程机器中创建的(通过检查Zookeeper的端口2181)。并且在脚本完成时它将被终止。 如何在完成后保持这种活力?

以下代码在脚本完成时停止远程进程。 script.ps1做了很多事情,包括启动Zookeeper和Solr asJob。

int iRemotePort = 5985;
string strShellURI = @"http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
string strAppName = @"/wsman";
WSManConnectionInfo ci = new WSManConnectionInfo(
    false,
    machineName,
    iRemotePort,
    strAppName,
    strShellURI,
    new PSCredential(userName, secure));

Runspace runspace = RunspaceFactory.CreateRunspace(ci);
runspace.Open();
using (PowerShell ps = PowerShell.Create())
{
    session.Log(@"c:\temp\script.ps1 -serverID " + counter + " -copySolrConfig $" + status + " -currentHost \"" + machineName + "\" -IP_PORT_List \"" + String.Join(", ", machineWithPort) + "\"");
    ps.Runspace = runspace;
    ps.AddScript(@"c:\temp\script.ps1 -serverID " + counter + " -copySolrConfig $" + status + " -currentHost \"" + machineName + "\" -IP_PORT_List \"" + String.Join(", ", machineWithPort) + "\"");

    var results = ps.Invoke();

    foreach (var result in results)
    {
        session.Log(result.ToString());
    }
}
runspace.Close();

1 个答案:

答案 0 :(得分:0)

因此经过长时间的尝试后我得出结论,使用power-shell脚本活动并不是保持zookeeper和solr有效运行的合适方法。因此将其作为Windows服务移动并通过WiX将其安装在远程计算机上。