1

I have

# ps aux | grep rgmana
root        4209  0.0  0.0      0     0 ?        D<   gen26   4:25 [rgmanager]

the

# kill -9 4209

has no effect. Only reboot solves the issue. Could you please explain this status [rgmanager] of the process?

Thank you!

EDIT 1: as suggested tried to investigate on the process

# strace -fp 4209
attach: ptrace(PTRACE_ATTACH, ...): Permission denied

# pstree 4209
rgmanager
Igor
  • 111
  • this is not a question about how to kill generic process in D state but rather about rgmanager, thanks! – Igor Mar 07 '17 at 09:18

1 Answers1

1

Refer this link to know more about the state of the process. If reboot is a costly operation, try closing terminals from which the process was invoked.

Also you can use the following to learn what the process is doing:

strace -fp 4209
pstree 4209
ss_iwe
  • 1,146
  • thanks for links and commands, yes it happens quite rarely but when happens it is very annoying to do reboot entire machine, I've edit my post with your suggestions but no luck for now, will dig into D state! – Igor Mar 06 '17 at 17:33