apache开机自动启动及Etag等相关配置

第一种方法:
[root@tomcat ~]# vi /etc/rc.local
加入如下一句:
/usr/local/httpd/bin/apachectl start

第二种方法:

[root@tomcat ~]# cp /usr/local/httpd/bin/apachectl /etc/rc.d/init.d/apache

[root@tomcat ~]# vi test

ln -s /etc/init.d/apache /etc/rc1.d/K90apache

ln -s /etc/init.d/apache /etc/rc2.d/S90apache

ln -s /etc/init.d/apache /etc/rc3.d/S90apache

ln -s /etc/init.d/apache /etc/rc4.d/S90apache

ln -s /etc/init.d/apache /etc/rc5.d/S90apache

ln -s /etc/init.d/apache /etc/rc6.d/K95apache

[root@tomcat ~]# vi /etc/rc.d/init.d/apache 

  在#!/bin/sh后面加入下面两行:  
  #chkconfig:   2345   85   15  
  #description: 后面是任意内容

[root@tomcat ~]# chkconfig --level 345 apache on

然后重新启动计算机可以看到apache服务已经自动运行了

附Etag等配置参考资料:

windows下的IIs或者apache启用gzip来压缩网页设置

Apache关掉Etag和Last-Modified的方法

pache/Nginx Cache Last-Modified、Expires和Etag相关工作原理


你可能感兴趣的:(apache)