On Fri, 15 Sep 2000, [iso-8859-1] François Chenais wrote:

> Hello
> 
> Using perl 5.6.0
>       apache_1.3.9
> 
> I 'm trying to build DSO mod_perl.1.24
> 
>   => perl Makefile.PL USE_DSO=1  EVERYTHING=1 PERL_DEBUG=1
> 
> All is ok but "make test" says :
> 
> -------------------------------------------------------------------------------
> ./apache_1.3.9/src/httpd -f `pwd`/t/conf/httpd.conf -X -d `pwd`/t &
> httpd listening on port 8529
> will write error_log to: t/logs/error_log
> letting apache warm up...\c
> done
> /usr/local/bin/perl t/TEST 0
> still waiting for server to warm up...............not ok
> server failed to start! (please examine t/logs/error_log) at t/TEST line
> 95.
> make: *** [run_tests] Error 111
> -------------------------------------------------------------------------------
> 
> 
> t/logs/error_log
> -------------------------------------------------------------------------------
> [notice] END block called for startup.pl
> [notice] Destruction->DESTROY called for $global_object
> [Fri Sep 15 10:34:40 2000] [warn] [notice] child_init for process 10374,
> report
> any problems to [no address given]
> -------------------------------------------------------------------------------

is the server still running?  check:

% ps -flags | grep httpd
or
% netstat -a | grep 8529
or 
% telnet localhost 8529

if it core dumped, run (in the mod_perl-x.xx directory):

% gdb ../apache-x.xx/src/htttpd
(gdb) thttpd
[if you get a core dump]
(gdb) bt

and post the output of that, along with your 'perl -V' and Makefile.PL
options.

Reply via email to