and test, whether i can connect to one of the listen-ports (e.g. "netcat
localhost 8529 -vv") => conection refused

so:


netcat localhost 8529 -vv

doesn't work. but:

netcat 127.0.0.1 8529 -vv

right?

I replaced all "localhost:<port>" directives in http.conf  by
127.0.0.1:<port> =>
at least i get a connection to the ports now.

You mean it does work ('make test' passes) if you s/localhost/127.0.0.1/g?


yes - but not 'make test', rather t/TEST where i do s/localhost/127.0.0.1/g
in t/conf/apache_test_config.pm.

You mean what works is:


t/TEST -conf
perl -pi -e 's|localhost|127.0.0.1|g' t/conf/*
t/TEST

'make test' always forces reconfig, that's why you lose your changes.

Except two tests (but this is perhaps another problem):
..
Failed Test               Stat Wstat Total Fail  Failed  List of Failed
---------------------------------------------------------------------------
----
t/apache/conftree.t                      8    1  12.50%  4

that's because of your change. try t/TEST -v t/apache/conftree.t


t/modules/apache_status.t 11 1 9.09% 1

try this one with the current cvs.



Do you have the entry:

127.0.0.1 localhost

in your /etc/hosts? If not please add one and try again.


the entry is (and was allways) there.

but it seems that it has no effect. Is your dns resolver configured to even look there? e.g. on my machine:


cat /etc/host.conf
order hosts,bind
multi on

It looks that your problem is resolving localhost.

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to