info home general windows unix linux debian mac os apache nginx iphone

Recent Articles

How to rename multiple files in Unix or Linux

Convert docx to doc in Mac OS X Snow Leopard or Leopard

HISTORY shell variable management in Unix/Linux

How to eject CD/DVD from your MacBook or iMac

Play Prince of Persia on Ubuntu Linux using DOSBox

Tags

(128)Network is unreachable: connect to listener

Tags: apache

Apache went down and logged these errors in error log. The operating system was Solaris 10.

[Thu November  1 15:49:04 2009] [warn] (128)Network is unreachable: connect to listener on [::]:443

The solution is simple.

Change this:

Listen 80

to

Listen 0.0.0.0:80

Similarly, if you have a Listen directive for the SSL port 443, change Listen 443 to Listen 0.0.0.0:443.

Restart Apache and you won't see these errors again hopefully.

Last Update: November 2009