Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error by starting apache

Status
Not open for further replies.

sjaakdelul

IS-IT--Management
Sep 19, 2002
43
NL
Hey,

I've configure apache, but I still doesn't work....

I've done the follow step:

My network settings are:
workgroup=thuis
user account on this computer: molegraaf
ip adres form provider = 213.93.xxx.xx

I think the ServerName is wrong....now I have:

ServerName molegraaf.thuis.net:80

But what's wrong? Can't I use my ip?

When I tried to strat apache, I got the follow error:

Code:
<32548>Only one usage of each socket adress (protocal/network adress/port) is normally permitted.   : make_sock: could not bind to adress 0.0.0.0:80   no listening sockets available, shuting down.

Thx
 
I reckon you can use your IP address for the ServerName directive, it just menas that people will have to type that number into their browser in order to see the site.

It's not much but it's a start...
 
Just
servername=213.93.xxx.xx:80
or
servername=213.93.xxx.xx ?
 
You should use
Code:
ServerName your ip here
as the comments above the ServerName directive says. When you have just the IP, Apache will interpret it as IP:80 so the :80 isn't neccessary. //Daniel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top