如何通过cygwin和ssh重新启动Apache服务器
情况是这样的:我在Windows 7机器上安装了Apache Web服务器。 同一台机器安装了cygwin,cygwin用ssh配置。 这使我可以远程ssh进入cygwin,然后通过cygwin,我可以访问这台计算机上的其他文件(即使那些不在cygdrive中的文件)。
我的问题:如果我通过ssh远程访问它,如何通过cygwin重新启动Web服务器? 可能吗? 谢谢
如果你的服务被称为Apache
,那么就像这样:
ssh machine "net stop Apache; net start Apache"
有时它被称为Apache2
或httpd
,具体取决于您的发行版。
在linux中
$ sudo service apache2 restart
or
$ sudo /etc/init.d/apache2 restart
请参阅:http://httpd.apache.org/docs/2.2/platform/windows.html#winsvc和http://httpd.apache.org/docs/2.2/platform/windows.html#wincons
你可以试试这个
$ service httpd restart
要么
$ /etc/init.d/httpd restart
链接地址: http://www.djcxy.com/p/48533.html
上一篇: How to restart apache server through cygwin and ssh
下一篇: How do I POST new data to CouchDB using JavaScript/jQuery