httpd为Apache HTTP服务器程序。直接执行程序可启动服务器的服务。
语法格式:httpd [参数]
常用参数:
-t | 测试配置文件的语法是否正确 |
-l | 显示服务器编译时所包含的模块 |
-L | 显示httpd指令的说明 |
-S | 显示配置文件中的设定 |
-D | 指定要传入配置文件的参数 |
参考实例
检查配置文件语法错误:
[root@xtuos.com ~]# httpd -t
启动httpd服务:
[root@xtuos.com ~]# httpd
显示编译模块:
[root@xtuos.com ~]# httpd -l
显示配置文件:
[root@xtuos.com ~]# httpd -L>1.log|tail -n 20 1.log
显示配置文件中的设定:
[root@xtuos.com ~]# httpd -S