apache 2.4 выдает "httpd -k start", статус показывает "Активен: неактивен (мертв)"
Я использую Fedora версии 23 (Twenty Three) и Apache/2.4.23 (Fedora)
Я заметил, что apache 2.4 имеет -DFOREGROUND по умолчанию при запуске:
/usr/sbin/httpd -DFOREGROUND
Я не хочу -DFOREGROUND, для Apache 2.2, который я ранее использовал, он имеет
/usr/sbin/httpd -k start
и это то, что я хочу. поэтому я изменил httpd.service:
# ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND # default in apache 2.4
ExecStart=/usr/sbin/httpd $OPTIONS -k start # this is what I want and in the previous machine that has apache 2.2
но после изменения, после "systemctl daemon-reload" и "service httpd start", статус httpd показывает неактивное (мертвое):
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: inactive (dead) since Mon 2017-03-06 10:18:37 CST; 1min 20s ago
Main PID: 4464 (code=exited, status=0/SUCCESS)
Status: "Total requests: 89051; Idle/Busy workers 75/25;Requests/sec: 0.279; Bytes served/sec: 4.1KB/sec"
Mar 02 17:48:19 GAFServer systemd[1]: Starting The Apache HTTP Server...
Mar 02 17:48:19 GAFServer httpd[4464]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::fe4d:d4ff:fef1:e121. Set the 'ServerName' directive globally to suppress this message
Mar 02 17:48:19 GAFServer systemd[1]: Started The Apache HTTP Server.
Mar 06 03:32:01 GAFServer httpd[23093]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::fe4d:d4ff:fef1:e121. Set the 'ServerName' directive globally to suppress this message
Mar 06 03:32:01 GAFServer systemd[1]: Reloaded The Apache HTTP Server.
Mar 06 10:18:35 GAFServer systemd[1]: Stopping The Apache HTTP Server...
Mar 06 10:18:37 GAFServer systemd[1]: Stopped The Apache HTTP Server.
Я так растерялся, в документе apache так мало о том, что такое DFOREGROUND и какие у меня есть другие варианты, как я могу прекратить использовать этот DFOREGROUND?