我如何从Windows启动我的Unix服务器上的服务

时间:2015-03-22 06:46:30

标签: windows shell unix batch-file batch-processing

当我在Windows上时,我需要在Unix上停止/启动应用程序服务。我不想做putty并登录到unix服务器并停止服务 我可以编写什么批处理脚本来从Windows执行此操作?

1 个答案:

答案 0 :(得分:1)

如果您不想手动执行此操作,请确保您可以从批处理文件中运行ssh命令(通过安装它并在必要时将PATH扩展到安装位置)并执行:< / p>

ssh root@your-system-name stop service-name
ssh root@your-system-name start service-name

这假设你的linux机器有startstop命令,否则你可能需要调用/etc/init.d/service-name stop或其他Linux发行版特定的命令。