免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6840 | 回复: 5
打印 上一主题 下一主题

如何指定apache启动时调动的主配置文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-08-01 21:40 |只看该作者 |倒序浏览
我用的系统是redhat9.0 ,自己安装了apache,但每次启动自己安装的apache时,都会调用/etc/httpd/conf/httpd.conf 这个系统自带的apache的主配置文件,
请高手指点,如何指定启动apache时指定我安装的/usr/local/apache/conf/httpd.conf的主配置文件

论坛徽章:
0
2 [报告]
发表于 2007-08-01 23:08 |只看该作者
我已修改了脚本文件/etc/rc.d/init.d/httpd如下,还是没有用,请高手帮忙呀
#!/bin/bash
#
# Startup script for the Apache Web Server
#
# chkconfig: - 85 15
# description: Apache is a World Wide Web server.  It is used to serve \
#               HTML files and CGI.
# processname: httpd
# pidfile: /var/run/httpd.pid
# config: /usr/local/apache/conf/httpd.conf

# Source function library.
. /etc/rc.d/init.d/functions

if [ -f /etc/sysconfig/httpd ]; then
        . /etc/sysconfig/httpd
fi

# This will prevent initlog from swallowing up a pass-phrase prompt if
# mod_ssl needs a pass-phrase from the user.
INITLOG_ARGS=""

# Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a server
# with the thread-based "worker" MPM; BE WARNED that some modules may not
# work correctly with a thread-based MPM; notably PHP will refuse to start.

# Path to the apachectl script, server binary, and short-form for messages.
apachectl=/usr/local/apache/bin/apachectl
httpd=${HTTPD-/usr/local/apache/bin/httpd}
prog=httpd
RETVAL=0

# check for 1.3 configuration
check13 () {
        CONFFILE=/usr/local/apache/conf/httpd.conf
        GONE="(ServerType|BindAddress|Port|AddModule|ClearModuleList|"
        GONE="${GONE}AgentLog|RefererLog|RefererIgnore|FancyIndexing|"
        GONE="${GONE}AccessConfig|ResourceConfig)"
        if grep -Eiq "^[[:space:]]*($GONE)" $CONFFILE; then
                echo
                echo 1>&2 " Apache 1.3 configuration directives found"
                echo 1>&2 " please read /usr/share/doc/httpd-2.0.40/migration.html"
                failure "Apache 1.3 config directives test"
                echo
                exit 1
        fi
}

# The semantics of these two functions differ from the way apachectl does
# things -- attempting to start while running is a failure, and shutdown
# when not running is also a failure.  So we just do it the way init scripts
# are expected to behave here.
start() {
        echo -n $"Starting $prog: "
        check13 || exit 1
        daemon $httpd $OPTIONS
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch /var/lock/subsys/httpd
        return $RETVAL
}
stop() {
        echo -n $"Stopping $prog: "
        killproc $httpd
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/httpd /var/run/httpd.pid
}
reload() {
        echo -n $"Reloading $prog: "
        check13 || exit 1
        killproc $httpd -HUP
        RETVAL=$?
        echo
}

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  status)
        status $httpd
        RETVAL=$?
        ;;
  restart)
        stop
        start
        ;;
  condrestart)
        if [ -f /var/run/httpd.pid ] ; then
                stop
                start
        fi
        ;;
  reload)
        reload
        ;;
  graceful|help|configtest|fullstatus)
        $apachectl $@
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
        exit 1
esac

exit $RETVAL

[ 本帖最后由 wleige 于 2007-8-2 11:14 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2007-08-02 12:05 |只看该作者
一个很快的方法,做个link,搞那么多个conf文件,把自已都搞糊涂了

论坛徽章:
0
4 [报告]
发表于 2007-08-02 12:22 |只看该作者
man httpd

-f config
   Uses the directives in the file config on startup. If config does not begin with a /, then it is taken to be

   a path   relative to the ServerRoot. The default is conf/httpd.conf.

论坛徽章:
0
5 [报告]
发表于 2007-08-02 17:18 |只看该作者
把系统原来自带的httpd停掉,然后启用新的:/usr/local/apache/bin/httpd -k start,可以写到/etc/rc.local中.

论坛徽章:
0
6 [报告]
发表于 2007-08-03 09:09 |只看该作者
原帖由 zdsheng 于 2007-8-2 17:18 发表
把系统原来自带的httpd停掉,然后启用新的:/usr/local/apache/bin/httpd -k start,可以写到/etc/rc.local中.



用这种方法还是不行,主配置文件还是调用的系统自带的,快晕掉了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP