使用批处理文件在后台启动Apache

时间:2013-03-24 23:35:59

标签: windows apache batch-file

我正在编写一个将启动Apache的批处理文件,以及在Web浏览器中打开的http://localhost。最简单的形式:

@start apache\bin\httpd.exe
@start http://localhost

这会导致批处理文件运行Apache,打开网页并退出。但是,httpd.exe在其自己的终端窗口中打开,而不是在后台隐藏。如何在没有可见窗口的情况下打开它?

2 个答案:

答案 0 :(得分:6)

试试这个:

@start /b "" apache\bin\httpd.exe

答案 1 :(得分:0)

在另一个网站上看到这个。它可能会奏效。

在后台开始:

command &

然后运行:

disown

并关闭终端。

您可以使用Ctrl + z停止前景应用程序,然后使用bg(fg)命令在后台(前景)中启动它。