July 14, 201114 yr Not sure what I did, but it appears the server is stuck in a loop trying to stop the array. I moved a share, then stopped the array, and that is when the webpage locked up. I have these syslogs over and over and over ....... ul 13 21:41:53 Tower emhttp: Unmounting disks... Jul 13 21:41:53 Tower emhttp: shcmd (208): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:53 Tower emhttp: _shcmd: shcmd (208): exit status: 1 Jul 13 21:41:53 Tower emhttp: shcmd (209): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:53 Tower emhttp: _shcmd: shcmd (209): exit status: 1 Jul 13 21:41:53 Tower emhttp: Retry unmounting disk share(s)... Jul 13 21:41:58 Tower emhttp: Unmounting disks... Jul 13 21:41:58 Tower emhttp: shcmd (210): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:58 Tower emhttp: _shcmd: shcmd (210): exit status: 1 Jul 13 21:41:58 Tower emhttp: shcmd (211): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:58 Tower emhttp: _shcmd: shcmd (211): exit status: 1 Jul 13 21:41:58 Tower emhttp: Retry unmounting disk share(s)... Jul 13 21:42:03 Tower emhttp: Unmounting disks... Jul 13 21:42:03 Tower emhttp: shcmd (212): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:42:03 Tower emhttp: _shcmd: shcmd (212): exit status: 1 Jul 13 21:42:03 Tower emhttp: shcmd (213): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:42:03 Tower emhttp: _shcmd: shcmd (213): exit status: 1 Jul 13 21:42:03 Tower emhttp: Retry unmounting disk share(s)... Not sure what to do here as I don't want to just power it off, and have to do a parity check. How can I get it out of this loop? I am using 5.0 beta 6 or 7... I can't get the webpage to load to get the version number.
July 14, 201114 yr Not sure what I did, but it appears the server is stuck in a loop trying to stop the array. I moved a share, then stopped the array, and that is when the webpage locked up. I have these syslogs over and over and over ....... ul 13 21:41:53 Tower emhttp: Unmounting disks... Jul 13 21:41:53 Tower emhttp: shcmd (208): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:53 Tower emhttp: _shcmd: shcmd (208): exit status: 1 Jul 13 21:41:53 Tower emhttp: shcmd (209): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:53 Tower emhttp: _shcmd: shcmd (209): exit status: 1 Jul 13 21:41:53 Tower emhttp: Retry unmounting disk share(s)... Jul 13 21:41:58 Tower emhttp: Unmounting disks... Jul 13 21:41:58 Tower emhttp: shcmd (210): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:58 Tower emhttp: _shcmd: shcmd (210): exit status: 1 Jul 13 21:41:58 Tower emhttp: shcmd (211): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:41:58 Tower emhttp: _shcmd: shcmd (211): exit status: 1 Jul 13 21:41:58 Tower emhttp: Retry unmounting disk share(s)... Jul 13 21:42:03 Tower emhttp: Unmounting disks... Jul 13 21:42:03 Tower emhttp: shcmd (212): umount /mnt/disk1 >/dev/null 2>&1 Jul 13 21:42:03 Tower emhttp: _shcmd: shcmd (212): exit status: 1 Jul 13 21:42:03 Tower emhttp: shcmd (213): rmdir /mnt/disk1 >/dev/null 2>&1 Jul 13 21:42:03 Tower emhttp: _shcmd: shcmd (213): exit status: 1 Jul 13 21:42:03 Tower emhttp: Retry unmounting disk share(s)... Not sure what to do here as I don't want to just power it off, and have to do a parity check. How can I get it out of this loop? I am using 5.0 beta 6 or 7... I can't get the webpage to load to get the version number. A disk cannot be un-mounted if it is busy. A disk is busy if any file on it is open for reading or writing, or is any program has any directory on it as its current directory. Basically, you need to terminate any processes using the disk. You can see the open files by typing lsof | grep mnt You will see a listing something like this: shfs 1818 root 4r REG 9,3 7335024640 4586 /mnt/disk3/Movies/DIRTY_DANCING-2-HAVANA_NIGHTS.ISO smbd 23052 root cwd DIR 0,14 15608 2 /mnt/user/Movies smbd 23052 root 28r REG 0,14 7335024640 867 /mnt/user/Movies/DIRTY_DANCING-2-HAVANA_NIGHTS.ISO It shows that in this case, shfs (the user-share file system) has one ISO open for reading and smbd has /mnt/user/Movies as its current-working-directory (cwd) as well as having the movie open for reading through /mnt/user/Movies. Typically, unRAID will first stop smbd and shfs before attempting to stop the array, so my array would stop if I pressed the button. All you need do is figure out what YOU have running and terminate them. The array will then stop. The first number in the above listing is the process ID. You can terminate most processes by typing kill NNN where NNN = the process ID. Joe L.
Archived
This topic is now archived and is closed to further replies.