Operating System - HP-UX
1827294 Members
2210 Online
109717 Solutions
New Discussion

Re: syslog messges not updated

 
rajesh73
Super Advisor

syslog messges not updated

syslog messges not updating .kindly find the last line for syslog message

May 2 12:38:21 prod1 syslogd: going down on signal 15
10 REPLIES 10
R.O.
Esteemed Contributor

Re: syslog messges not updated

"syslogd: going down on signal 15"

The message is self-explanatory. The syslogd daemon died. Start it up:

#/sbin/init.d/syslogd start

And check whether ths syslog.log file has been updated.

Regards,
"When you look into an abyss, the abyss also looks into you"
Doug O'Leary
Honored Contributor

Re: syslog messges not updated

Hey;

ps -ef | grep syslogd

If it's running, kill it. If not, or if you killed it, restart it:

/sbin/init.d/syslogd start

then test:

logger -p daemon.warn testing
tail /var/adm/syslog/syslog.log

Doug

------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
James R. Ferguson
Acclaimed Contributor

Re: syslog messges not updated

Hi:

There are two classic ways this happens: (1) you moved (renamed) as in 'mv' the current 'syslog' file to another name; or (2) you modified the '/etc/syslog.conf' file and failed to use *tab* characters as delimiters.

Regards!

...JRF...
bharath_hanuma
Regular Advisor

Re: syslog messges not updated

Hi Rajesh,

Check whether syslog daemon is running. If not running start the syslog service as

/sbin/init.d/syslogd start


Regards
Bharath
James R. Ferguson
Acclaimed Contributor

Re: syslog messges not updated

Hi (again):

Oops, I read the "not updated" but not the "going down on signal 15". Signal-15 is simply a 'kill' or a 'kill -TERM'. Someone or some process terminated the logging.

Regards!

...JRF...
singh sanjeev
Trusted Contributor

Re: syslog messges not updated

>>>May 2 12:38:21 prod1 syslogd: going down on signal 15

syslogd is not active on the system, it has been killed:

#restart will solve the issue:
check
ps -ef |grep -i syslogd

if not running then
/sbin/init.d/syslogd start
Sanjeev Singh
stephen peng
Valued Contributor

Re: syslog messges not updated

restart syslogd and see what happen. I met this situation before, restart syslogd did not solve the problem. unfortunately, I forgot how to deal with it.
Aneesh Mohan
Honored Contributor

Re: syslog messges not updated

If restart syslogd doesn`t work ,you may need to reboot the box.


Aneesh
James R. Ferguson
Acclaimed Contributor

Re: syslog messges not updated

Hi (again):

> If restart syslogd doesn`t work ,you may need to reboot the box.

This is UNIX; not Windoz.

...JRF...
nightwich
Valued Contributor

Re: syslog messges not updated

Ferguson is right.


- check the restart of syslog ( /sbin/init.d/syslogd restart


- check the configurations of /etc/syslog.conf


And report :)