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!

apache and xinetd issue

Status
Not open for further replies.

richbark

MIS
Jun 5, 2002
3
US
I am having some sort of conflict between apache (httpd) and xinetd. If xinetd loads before apache, apache will not load/work. I cannot get it to start ubtil I shut down xinetd. To complicate matters, it seems as though xinetd will not start once httpd is running.. even though it says it started wehn I start xinetd. Help?
 
Is xinetd configured to start some program that listens to port 80? To find out, you could do this:
cd /etc/xinetd.d
grep -i -H '80' *
That might give you a line like
some-service: port = 80
If it doesn't output anything, that's not the problem. If it does output something like the line above, type:
grep -i 'disable' some-service
Change some-service to the service name given. If you get a line like:
disable = no
you should edit the file and make that no a yes. I hope I made myself somewhat clear :). //Daniel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top