Apache 在 Mac 上停止后无法加载网页

Apache 在 Mac 上停止后无法加载网页

我有 Mac OS X 10.10。我将 Apache 配置为从 Sites 文件夹加载网页,因此当我启动系统时,Apache 会正确地从 Sites 文件夹加载我的网页。

当我输入

ps aux | grep httpd

系统给了我这个:

_www  337   0.0  0.0  2544588   7660   ??  S     4:09am   0:00.03 /usr/sbin/httpd -D FOREGROUND
_www  157   0.0  0.0  2544588   7980   ??  S     4:09am   0:00.02 /usr/sbin/httpd -D FOREGROUND
root   52   0.0  0.1  2544076  15692   ??  Ss    4:09am   0:00.47 /usr/sbin/httpd -D FOREGROUND
hasan_azimi0     1691   0.0  0.0  2432772    644 s000  S+    1:38pm   0:00.00 grep httpd

一切正常,直到我使用以下命令停止 Apache:

sudo apachectl stop

当我使用以下命令启动 Apache 时,请停止它:

sudo apache start

我的浏览器无法加载任何页面。当我输入:

ps aux | grep httpd

只有一个过程:

root   52   0.0  0.1  2544076  15692   ??  Ss    4:09am   0:00.47 /usr/sbin/httpd -D FOREGROUND
hasan_azimi0     1691   0.0  0.0  2432772    644 s000  S+    1:38pm   0:00.00 grep httpd

在我重新启动系统之前,我无法加载任何内容。因此,Apache 基本上在启动时运行,但在我停止它之后,它无法再次启动。我意识到有两个进程_www应该启动,sudo apache start但我不知道如何启动?顺便说一句,我还知道 Apache 将使用一个名为的文件启动,org.apache.httpd.plist因此这是它的内容。如果可以的话,请告诉我:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Disabled</key>
<true/>
<key>Label</key>
<string>org.apache.httpd</string>
<key>EnvironmentVariables</key>
<dict>
    <key>XPC_SERVICES_UNAVAILABLE</key>
    <string>1</string>
</dict>
<key>ProgramArguments</key>
<array>
    <string>/usr/sbin/httpd</string>
    <string>-D</string>
    <string>FOREGROUND</string>
</array>
<key>OnDemand</key>
<false/>

相关内容