阅读以下说明,回答问题1~5,将答案填入答题纸对应的解答栏内。 配置WWW服务器是Linux操作平台的重要工作之一,而Apach是目前应用最为广泛的Web服务器产品之一。在Linux下安装Apachc Web服务,Apache服务程序httod启动时需要

admin2010-12-17  33

问题 阅读以下说明,回答问题1~5,将答案填入答题纸对应的解答栏内。
配置WWW服务器是Linux操作平台的重要工作之一,而Apach是目前应用最为广泛的Web服务器产品之一。在Linux下安装Apachc Web服务,Apache服务程序httod启动时需要读取配置文件httpd.conf,以下是一个hupd.conf配置文件的片断:
   ## httpd.conf--Apache HTTP server configuration file
   ### Section 1:Global Environment
   ServerType standalone
   ServerRoot"/etc/httpd"
   Timeout  300
   KeepAl ive On
   MaxKeepAliveRequests  100
   KeepAliveTimeout 15
   MaxClient 150
   ###Section 2:  ’Main’server configuration
   Port  80
   User apache
   Group apache
   ServerAdmin webmaster@abc.com.cn
   ServerName www.abc.com.cn
   DocumentRoot"/var/www/html"
   UserDir public_html
   DirectpryIndex  index.html
   Alias  /jianji"/home/zhang/jianji"
   ScriptAlias/cgi-bin/"/var/www/cgi-bin/"
   ErrorDocument 404/missing.html
   ###Section 3:Virtual HostS
   NameVirtualHost 192.168.10.101
   <VirtualHost 192.168.10.101>
   ServerAdmin webmaster@abc.com.cn
   DocumentRoot/www/htdocs/abc
   ServerName markert.abc.com.cn
   ErrorLog logs/host.some_domain.com-error_log
   CustomLog logs/host.some_domain.com_access log common
   </VirtualHost>
命令“chkconfig-level 3 httpd on”的功能是什么?

选项

答案设置当操作系统按运行级3启动时自动启动HTTP服务

解析 chkconfig命令用于修改Linux操作系统开机时在每一个运行等级(Run Level)中要自动启动和关闭的程序。该命令格式是:
   chkconfig[--level<运行级>]<名字>[on|off]
   例如希望在运行级别3、5启动计算机时启动HTTP服务,则命令为:
   #chkconfig--level 35 httpd on
   因此该命令的作用是设置当操作系统按运行级3启动时自动启动HTTP服务。
转载请注明原文地址:https://kaotiyun.com/show/ZztZ777K
0

相关试题推荐
最新回复(0)