--enable-info | server-infoを表示させるのに必要 |
--enable-logio | access.logに記録される転送量を、実際の転送量にする |
--enable-log-config | ログをカスタマイズするのに必要。(デフォルトで Enableか?) |
--enable-so | DSOでモジュールを Loadするのに必要 |
--enable-rewrite | rewriteエンジンを使うのに必要 |
[root]# cd /etc/rc.d/init.d [root]# ln -s /usr/local/apache2/bin/apachectl httpd [root]# ls -l lrwxrwxrwx 1 root root 32 Aug 16 20:23 httpd -> /usr/local/apache2/bin/apachectl* |
# When multiple arguments are given, only the error from the _last_ # one is reported. Run "apachectl help" for usage info # #chkconfig: - 2345 85 15 #description:httpd # ARGV="$@" # # |||||||||||||||||||| START CONFIGURATION SECTION |||||||||||||||||||| # -------------------- -------------------- |
# When multiple arguments are given, only the error from the _last_ # one is reported. Run "apachectl help" for usage info # # chkconfig: 2345 85 15 # description: httpd # ARGV="$@" # |
[root]# chkconfig --add httpd [root]# chkconfig --list httpd httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off |