I'm trying to configure a software RAID 10 on my CentOS server. During my test, I disabled a device to check that my filesystem was still working.
When I executed partprobe, the server wasn't responsive, I couldn't get the prompt, so I closed my ssh session and reopened a new one.
Now I have this :
# ps aux | grep partprobe
root 6319 0.0 0.0 21704 916 ? D07:40 0:00 partprobe
I tried running kill -9 6319
, but that doesn't work !!
# lsof /dev/md10
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
partprobe 6319 root 4u BLK 9,10 8708 /dev/md10
edit:
root 6212 0.0 0.0 71800 752 ? D 07:36 0:00 umount /var/lib/mysql/
root 6319 0.0 0.0 21704 916 ? D 07:40 0:00 partprobe
root 6424 0.0 0.0 71812 856 ? D 07:47 0:00 mount /dev/md10 /var/lib/mysql/
root 6552 0.0 0.0 71812 860 ? D 07:56 0:00 mount /dev/md10 /var/lib/mysql/
root 6583 0.0 0.0 5888 668 ? D 07:57 0:00 shutdown -r 0 w
root 6663 0.0 0.0 71812 856 ? D 08:02 0:00 mount /dev/md10 /var/lib/mysql/
root 6779 0.0 0.0 5888 668 ? D 08:08 0:00 shutdown -r 0 w
root 7285 0.0 0.0 5888 668 ? D 08:54 0:00 shutdown -r 0 w
root 7325 0.0 0.0 90108 3364 ? Ss 08:59 0:00 sshd: root@pts/8
root 7328 0.0 0.0 66088 1608 pts/8 Ss 09:00 0:00 -bash
root 8332 0.0 0.0 65612 964 pts/8 R+ 10:49 0:00 ps aux
Can you help me please ?