如何在centOS 7中启动apache
How start apache in centOS 7
我使用以下命令启动 Apache:service httpd start
in centOS6
今天我下载了 centOS7-64bit-minimal
并想在安装后启动 Apache。
当我使用 service httpd start
时,os 会显示一条消息:
Redirecting to /bin/systemctl start httpd.service
我应该使用 [root@localhost#] /bin/systemctl start httpd.service
吗?
我试过 [root@localhost#] systemctl start httpd.service
似乎没问题,但在 centOS6
中,启动状态后 [OK]
或 [FAILED]
或类似的东西那个,但是在这个版本中,没有报告......
我走对路了吗?
执行此命令后 httpd 是否正确启动:
[root@localhost#] systemctl start httpd.service
?
提前致谢...
欢迎使用 Systemd!这已经取代了最近的 Red Hat 同类产品中的 service
,例如 CentOS 7。您在 systemctl
的正确轨道上。现在,您不用在 /var/log/messages/
中检查日志,而是使用 journalctl
查看日志。要查看特定于“httpd”的日志,您可以查看“单元”:
journalctl -u httpd
与 journalctl
相关的其他有用的事情:
alias jc='journalctl -xa' # make a friendly alias for ease of typing
jc -f # follow the current events
你做得对。
它将您的命令发送到 httpd 服务。您可以使用此命令查看上次发送命令的状态:
service httpd status
必须更改触发httpd服务启动..
建议方式:
systemctl start httpd.service
这将有助于 Linux EC2 实例..
虽然帮助了我
我使用以下命令启动 Apache:service httpd start
in centOS6
今天我下载了 centOS7-64bit-minimal
并想在安装后启动 Apache。
当我使用 service httpd start
时,os 会显示一条消息:
Redirecting to /bin/systemctl start httpd.service
我应该使用 [root@localhost#] /bin/systemctl start httpd.service
吗?
我试过 [root@localhost#] systemctl start httpd.service
似乎没问题,但在 centOS6
中,启动状态后 [OK]
或 [FAILED]
或类似的东西那个,但是在这个版本中,没有报告......
我走对路了吗?
执行此命令后 httpd 是否正确启动:
[root@localhost#] systemctl start httpd.service
?
提前致谢...
欢迎使用 Systemd!这已经取代了最近的 Red Hat 同类产品中的 service
,例如 CentOS 7。您在 systemctl
的正确轨道上。现在,您不用在 /var/log/messages/
中检查日志,而是使用 journalctl
查看日志。要查看特定于“httpd”的日志,您可以查看“单元”:
journalctl -u httpd
与 journalctl
相关的其他有用的事情:
alias jc='journalctl -xa' # make a friendly alias for ease of typing
jc -f # follow the current events
你做得对。 它将您的命令发送到 httpd 服务。您可以使用此命令查看上次发送命令的状态:
service httpd status
必须更改触发httpd服务启动.. 建议方式:
systemctl start httpd.service
这将有助于 Linux EC2 实例.. 虽然帮助了我