74 if [ "x$ARGV" = "x" ] ; then
75 ARGV="-h"
76 fi
77
78 case $ARGV in
79 start|stop|restart|graceful|graceful-stop)
80 $HTTPD -k $ARGV
81 ERROR=$?
82 ;;
83 startssl|sslstart|start-SSL)
84 echo The startssl option is no longer supported.
85 echo Please edit httpd.conf to include the SSL configuration settings
86 echo and then use "apachectl start".
87 ERROR=2
88 ;;
Probably something on line 79 in the apachectl fileOn Thu, Nov 11, 2021 at 4:52 PM Prasanth Kodakandla <prasanth.kodakandla@xxxxxxxxx> wrote:Hi all,I am getting below error when starting apache webserver using apachectl./apachectl -k start
terminate called after throwing an instance of 'std::length_error'
what(): basic_string::assign
./apachectl: line 79: 95216 Aborted (core dumped) $HTTPD "$@"Does anyone have any idea what's causing this issue