This is a discussion on Cannot start Apache, error message in log file: child pid 4274 exit signal Segmentation fault (11) within the Linux Web Servers forums, part of the Web Server and Related Forums category; Hello, after sucessfull starting apache 2.0 on Suse Linux 9.2 with: /usr/local/apache2/bin/apachectl start I ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
after sucessfull starting apache 2.0 on Suse Linux 9.2 with: /usr/local/apache2/bin/apachectl start I get errormessage in my opera Browser (german): Beim Laden von http://127.0.0.1:80 ist folgender Fehler aufgetreten: Verbindung zu Rechner 127.0.0.1 ist unterbrochen means: connection to localhost is broken. If I make:/usr/local/apache2/bin/apachectl start again. I get: httpd (pid 4282) already running So, the apache server is running, but I get this errormessage? Firewall is shutdown and I'm working with an DSL Router. Tomcat works for me, the same machine, the same Suse. I tried with: http://127.0.0.1 http://127.0.0.1:80 http://localhost http://localhost:80 http://192.168.0.5:80 http://192.168.0.5 http://computername:80 http://computername In the logfile is something about child pid error 4274, every time I want to start Apache: [Mon May 30 01:40:02 2005] [notice] child pid 4274 exit signal Segmentation fault (11) [Mon May 30 01:40:02 2005] [notice] child pid 4275 exit signal Segmentation fault (11) [Mon May 30 01:40:02 2005] [notice] child pid 4276 exit signal Segmentation fault (11) Best rergards and many thanks Andreas |
|
|||
|
Andreas schrieb:
> after sucessfull starting apache 2.0 on Suse Linux 9.2 with: > /usr/local/apache2/bin/apachectl start > I get errormessage in my opera Browser (german): > Beim Laden von http://127.0.0.1:80 ist folgender Fehler aufgetreten: > Verbindung zu Rechner 127.0.0.1 ist unterbrochen > means: connection to localhost is broken. > > If I make:/usr/local/apache2/bin/apachectl start again. I get: > httpd (pid 4282) already running > > So, the apache server is running, but I get this errormessage? > Firewall is shutdown and I'm working with an DSL Router. > Tomcat works for me, the same machine, the same Suse. > > I tried with: > http://127.0.0.1 > http://127.0.0.1:80 > http://localhost > http://localhost:80 > http://192.168.0.5:80 > http://192.168.0.5 > http://computername:80 > http://computername > > In the logfile is something about child pid error 4274, every time I > want to start Apache: > > [Mon May 30 01:40:02 2005] [notice] child pid 4274 exit signal > Segmentation fault (11) > [Mon May 30 01:40:02 2005] [notice] child pid 4275 exit signal > Segmentation fault (11) > [Mon May 30 01:40:02 2005] [notice] child pid 4276 exit signal > Segmentation fault (11) First stop your apache: apachectl stop Then have a look at remaining processes: ps aux|grep httpd If there are some, kill them with killall -9 httpd Restart apache with apachectl start Try netstat -na|grep 80 => Is a daemon listening on Port 80? And have a look again into the error log. Is your configuration ok? Try apachectl -t B. -- BM Computer-Services, Bergmannstr. 66, 10961 Berlin Webdesign, Internet, Layout und Grafik Tel.: 030/20649400, mobil 0175/7419517, Fax: 030/20649401 Web: http://www.bmservices.de, eMail: kontakt@bmservices.de |
|
|||
|
Andreas schrieb:
> after sucessfull starting apache 2.0 on Suse Linux 9.2 with: > /usr/local/apache2/bin/apachectl start > I get errormessage in my opera Browser (german): > Beim Laden von http://127.0.0.1:80 ist folgender Fehler aufgetreten: > Verbindung zu Rechner 127.0.0.1 ist unterbrochen > means: connection to localhost is broken. > > If I make:/usr/local/apache2/bin/apachectl start again. I get: > httpd (pid 4282) already running > > So, the apache server is running, but I get this errormessage? > Firewall is shutdown and I'm working with an DSL Router. > Tomcat works for me, the same machine, the same Suse. > > I tried with: > http://127.0.0.1 > http://127.0.0.1:80 > http://localhost > http://localhost:80 > http://192.168.0.5:80 > http://192.168.0.5 > http://computername:80 > http://computername > > In the logfile is something about child pid error 4274, every time I > want to start Apache: > > [Mon May 30 01:40:02 2005] [notice] child pid 4274 exit signal > Segmentation fault (11) > [Mon May 30 01:40:02 2005] [notice] child pid 4275 exit signal > Segmentation fault (11) > [Mon May 30 01:40:02 2005] [notice] child pid 4276 exit signal > Segmentation fault (11) First stop your apache: apachectl stop Then have a look at remaining processes: ps aux|grep httpd If there are some, kill them with killall -9 httpd Restart apache with apachectl start Try netstat -na|grep 80 => Is a daemon listening on Port 80? And have a look again into the error log. Is your configuration ok? Try apachectl -t B. -- BM Computer-Services, Bergmannstr. 66, 10961 Berlin Webdesign, Internet, Layout und Grafik Tel.: 030/20649400, mobil 0175/7419517, Fax: 030/20649401 Web: http://www.bmservices.de, eMail: kontakt@bmservices.de |