Operating System - HP-UX
1837184 Members
2675 Online
110114 Solutions
New Discussion

Re: Syslog error messages

 
Waqar Razi
Regular Advisor

Syslog error messages

I am having the following error messages on D210 server running HPUX 10.20:

Dec 3 16:09:54 APPLE inetd[5682]: Configuration complete
Dec 3 16:19:53 APPLE inetd[5682]: bootps/udp: bind: Address already in use
Dec 3 16:19:53 APPLE inetd[5682]: bootps/udp: Service enabled
Dec 3 16:29:53 APPLE inetd[5682]: bootps/udp: bind: Address already in use
Dec 3 16:29:53 APPLE inetd[5682]: bootps/udp: Service enabled
Dec 3 16:39:53 APPLE inetd[5682]: bootps/udp: bind: Address already in use
Dec 3 16:39:53 APPLE inetd[5682]: bootps/udp: Service enabled

Can any one please give me some clue?
6 REPLIES 6
Shoghi Martinez G.
Honored Contributor

Re: Syslog error messages

This is the bootps daemond was started while another copy of itself was running, this happens sometimes when you restart the inet superserver.
Adam W.
Valued Contributor

Re: Syslog error messages

NO worries Mate, this is a common occurance. simply multiple instances of the same daemon running.
There are two types of people in the world, Marines and those who wish they were.
Grayh
Trusted Contributor

Re: Syslog error messages

Try inetd -k again but this time make sure bootpd is not running. It comes alive every so often so make sure it is actaully not running.

Re: Syslog error messages

What does inetd -c do? Can some one give me some explainatin, please?
Analyst
Trusted Contributor

Re: Syslog error messages

Hi waqar ,

The answer for the previous writer is

>:What does inetd -c do? Can some one give me some explainatin, please?

Reconfigure the Internet daemon; in other words, force the current inetd to reread /etc/inetd.conf.

hope so.
This will solve the problem .

Thanks,
Analyst.
TTr
Honored Contributor

Re: Syslog error messages

> bootps/udp: bind: Address already in use
As mentioned above the bootpd is already running when a new copy is attempting to start. Take alook at
http://www11.itrc.hp.com/service/cki/docDisplay.do?docLocale=en&docId=emr_na-c01032791-4

The bootpd daemon is rarely used in UNIX servers so if you don't have any network devices getting their boot information from bootpd in your server you should completely disable it.
> What does inetd -c do?
It reloads the inetd configuration from /etc/inetd.conf. If services entries were removed from /etc/inetd.conf it kills the daemons if needed and refuses connections to those services, if services were added to inetd.conf, it adds them to the service list so new connections will be accepted.