这里简要介绍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
-
切换到root用户
-
cd到/etc/rc.d/init.d/目录,并列出该目录下的所有文件,看看是否有httpd
-
使用httpd -v查看已经安装的httpd的版本
-
使用rpm -qa | grep httpd查看是否已经安装了httpd
-
使用ps -ef | grep httpd查看httpd的进程
-
使用service httpd status查看httpd的运行状态
-
使用service httpd stop可以停止httpd
使用service httpd start 可以启动httpd
-
service httpd服务启动后,可以在浏览器中输入http://localhost浏览测试,如果能看到如下所示的页面,说明Apache能正常工作。
[外部服务器输入http://192.168.28.10(主机IP)]