You are not logged in.

#1 2011-07-04 20:41:31

Markus00000
Member
Registered: 2011-03-27
Posts: 318

[SOLVED] Cannot start httpd: Segmentation fault in apachectl

I get this error when starting httpd:

$ sudo /etc/rc.d/httpd start
:: Starting Apache Web Server   [BUSY]
/usr/sbin/apachectl: line 84:  5805 Segmentation fault  $HTTPD -k $ARGV   [FAIL]

System (32-bit) is up to date. In a 64-bit installation using testing repositories and identical (although not the same) config files, I don't get this error.

/usr/sbin/apachectl starting from line 79:

ERROR=0
if [ "x$ARGV" = "x" ] ; then 
    ARGV="-h"
fi

case $ARGV in          ##### THIS IS LINE 84 #####
start|stop|restart|graceful|graceful-stop)
    $HTTPD -k $ARGV
    ERROR=$?
    ;;
startssl|sslstart|start-SSL)
    echo The startssl option is no longer supported.
    echo Please edit httpd.conf to include the SSL configuration settings
    echo and then use "apachectl start".
    ERROR=2
    ;;
configtest)
    $HTTPD -t
    ERROR=$?
    ;;
status)
    $LYNX $STATUSURL | awk ' /process$/ { print; exit } { print } '
    ;;
fullstatus)
    $LYNX $STATUSURL
    ;;
*)
    $HTTPD $ARGV
    ERROR=$?
esac

exit $ERROR

Can anyone tell me what is going on here?

Last edited by Markus00000 (2011-10-26 11:25:21)

Offline

#2 2011-07-04 22:21:47

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Cannot start httpd: Segmentation fault in apachectl

Offline

#3 2011-07-05 06:59:51

Markus00000
Member
Registered: 2011-03-27
Posts: 318

Re: [SOLVED] Cannot start httpd: Segmentation fault in apachectl

Exactly my issue. Thanks a lot, karol!

Offline

Board footer

Powered by FluxBB