Linux Apache httpd服务的启动,

时间:2024-05-21 12:54:56

这里简要介绍Linux环境中Apache也就是httpd服务的启动,查看版本等操作,详细如下

第一、启动、终止、重启
systemctl start httpd.service #启动

systemctl stop httpd.service #停止

systemctl restart httpd.service #重启

第二、设置开机启动/关闭
systemctl enable httpd.service #开机启动

systemctl disable httpd.service #开机不启动

第三、检查httpd状态
systemctl status httpd.service
 

 

 

  1. 打开terminal

    Linux Apache httpd服务的启动,

  2. 切换到root用户

    Linux Apache httpd服务的启动,

  3. cd到/etc/rc.d/init.d/目录,并列出该目录下的所有文件,看看是否有httpd

    Linux Apache httpd服务的启动,

  4. 使用httpd -v查看已经安装的httpd的版本

    Linux Apache httpd服务的启动,

  5. 使用rpm -qa | grep httpd查看是否已经安装了httpd

    Linux Apache httpd服务的启动,

  6. 使用ps -ef | grep httpd查看httpd的进程

    Linux Apache httpd服务的启动,

  7. 使用service httpd status查看httpd的运行状态

    Linux Apache httpd服务的启动,

  8. 使用service httpd stop可以停止httpd

    使用service httpd start 可以启动httpd

    Linux Apache httpd服务的启动,

  9. service httpd服务启动后,可以在浏览器中输入http://localhost浏览测试,如果能看到如下所示的页面,说明Apache能正常工作。

    [外部服务器输入http://192.168.28.10(主机IP)]

    Linux Apache httpd服务的启动,