1824518 Members
3777 Online
109672 Solutions
New Discussion юеВ

Syslog message

 
SOLVED
Go to solution
wvsa
Regular Advisor

Syslog message

Greetings,

Getting hundreds of the following messages in our syslog file:
Mar 13 00:01:10 hosea inetd[12433]: registrar/tcp: Connection from hosea (89.0.0
.123) at Thu Mar 13 00:01:10 2003

Any ideas as to what is causing these messages.

Thankyou for your input.

5 REPLIES 5
Michael Tully
Honored Contributor
Solution

Re: Syslog message

Are there a series of EMS messages following this? These will be disk related messages.

Also you could have 'inetd' logging enabled.
# ps -ef | grep inetd

Could you provide a little more of the message please?
Anyone for a Mutiny ?
KCS_1
Respected Contributor

Re: Syslog message

hi,

Just in my opinion, your message are created by inetd daemon when your user were connection to the host.

The message means internet daemon(inetd) is received internet connection from hosea(89.0.0.123)

if, you have a problem in your computer's system, please post more message .

thanks.
Easy going at all.
Steven E. Protter
Exalted Contributor

Re: Syslog message

The messages are normal. Simply logging connections. Could prove useful if somethign nefarious happens. Keep the logging at this level.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ian Kidd_1
Trusted Contributor

Re: Syslog message

you're probably running inetd with the -l option (although it might not show this with a ps -ef | grep inetd).

This was either done by another admin (using /usr/sbin/inetd -l) or it has been configured at startup.

Extra logging is always beneficial, but if want to turn this off for some reason, try issuing /usr/sbin/inetd -l again. This will toggle it off.
If at first you don't succeed, go to the ITRC
T G Manikandan
Honored Contributor

Re: Syslog message

There are messages from the EMS where it monitors whether the EMS monitor is running.

These messages arise as you have a inetd -l option specified which logs messages into syslog.log file.

As suggested just do a

/usr/sbin/inetd -l
to switch it off.