<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi all.<div><br></div><div>Earlier today, I saw something that someone else had posted about recently, and thought I would post some information to help understand why this happens. I was in the gui of my server, and it was unresponsive and told me that CCED was not running. OK. Onto the command line to troubleshoot.</div><div><br></div><div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">[root@hostname /]# ps -ef | grep cced</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22324 22496  0 21:03 ?        00:00:00 /usr/sausalito/sbin/cced</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22380 22379  0 21:03 ?        00:00:00 /bin/sh /etc/init.d/cced.init restart</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22383 22380  0 21:03 ?        00:00:00 /bin/sh /etc/init.d/cced.init stop</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22496     1  0 06:01 ?        00:00:00 /usr/sausalito/sbin/cced</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     31922 13312  0 21:05 pts/0    00:00:00 grep cced</div></div><div><br></div><div><br></div><div>Hmm. Looks the same as the info posted here recently. Lets see.... what is the process doing. We'll snoop on the first cced process... Note its PID is 22324 in the list above.</div><div><br></div><div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">[root@hostname /]# strace -p 22324</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">Process 22324 attached - interrupt to quit</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">waitpid(22335, 0xbfc27334, 0)           = ? ERESTARTSYS (To be restarted)</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">--- SIGTERM (Terminated) @ 0 (0) ---</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">gettimeofday({1391980053, 351900}, NULL) = 0</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">stat64("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) = 0</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">time(NULL)                              = 1391980053</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">send(9, "<30>Feb  9 21:07:33 cced(smd)[22"..., 53, MSG_NOSIGNAL) = 53</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">sigreturn()                             = ? (mask now [CHLD])</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">waitpid(22335, 0xbfc27334, 0)           = ? ERESTARTSYS (To be restarted)</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">Process 22324 detached</div></div><div><br></div><div>Note: You will have to press control C to get out of this command... </div><div><br></div><div>So what is interesting here is this waitpid 22325... Lets see what that is all about</div><div><br></div><div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">[root@hostname /]# ps -ef | grep 22335</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22335 22324  0 21:03 ?        00:00:00 /usr/bin/perl -w -I/usr/sausalito/perl yum-update.pl</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     22336 22335  0 21:03 ?        00:00:00 [sh] <defunct></div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">root     26569 13312  0 21:04 pts/0    00:00:00 grep 22335</div></div><div style="margin: 0px; font-size: 11px; font-family: Menlo;"><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">OK. So that tells me at the same time that I was in the gui, there was a yum update happening, and also at the same time something wanted to restart cced. </div><div style="margin: 0px; font-size: 11px; font-family: Menlo;"><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">In this case, I waited a bit, and it self repaired... once the yum commands had completed. I just wanted to share this with everyone here in case it is useful to anyone in future.</div><div style="margin: 0px; font-size: 11px; font-family: Menlo;"><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo;">Greg.</div></body></html>