1834150 Members
2153 Online
110064 Solutions
New Discussion

Re: syslogd

 
SOLVED
Go to solution
Jade Bulante
Frequent Advisor

syslogd

I want to kill the syslogd service and restart it. The process is stuck and I want to do I "kill -9" How do I start it back up again??

Need help.
4 REPLIES 4
Sridhar Bhaskarla
Honored Contributor
Solution

Re: syslogd

Hi Jade,

Run it as "syslogd -D" and it will start.

Also, you can run /sbin/init.d/syslogd stop and /sbin/init.d/syslogd start

-Sri

(Duplicate post)
You may be disappointed if you fail, but you are doomed if you don't try
Patrick Wallek
Honored Contributor

Re: syslogd

What do you mean stuck? What type of problem are you having?

I would first try:

# /sbin/init.d/syslogd stop

If that doesn't work, you could then try to kill it. I would use 'kill -9' as a last resort though.

To restart it:

# /sbin/init.d/syslogd start
Paul Sperry
Honored Contributor

Re: syslogd

/sbin/init.d/syslogd start
avsrini
Trusted Contributor

Re: syslogd

Hi Jade,
You can start / stop syslogd
daemon with

/sbin/init.d/syslogd start
/sbin/init.d/syslogd stop.

Also you can directly start it with
/usr/sbin/syslogd -D.

-D allows syslogd to route the kernel messages, instead of kernel printing messages directly on console.

Srini.
Be on top.