STATUS updates
Some links of interest:
In what has shaped up to be a busy day updating my script infrastructure, diskreport.sh was the next script to receive some attention.
Originally written to give me daily updates on the DSLAB cluster NFS mount, I had also expanded it to give me cursory overviews of disk usage on several LAIR VMs.
However, the output was far from useful, omitting several machines (such as sokraits, halfadder, nfs1/2), which I have had to manually tend to issues that have cropped up (often once they've become an issue). This script now does a fair bit more expansive reporting, and is condensed into one main loop, vs. having essentially N blocks of code with different variables hardcoded.
I also am doing a straight call right to my “status” script on data.dslab.lan… since that is more customized for the DSLAB environment.
More students this semester seem to not have gotten screen. Still multiple sessions running, and clearly some lack of understanding of process management. Sadly, the super-majority are in my UNIX class.
Did some further tweaks to homedirbackup. The storage size-based backup frequency code seems to be working- which should lead to more automated maintenance of the OCFS2/DRBD volume on sokraits/halfadder.
The free space mismatch forcing OCFS2 to switch to read only issue reared its ugly head again (as I was clearing out remnant directories from removed user accounts).
I figured the best approach was a full unmount and reboot (multiple, actually), and I was sure to run a forced fsck on BOTH sokraits and half adder (sokraits first, reboot both, halfadder second, reboot both again, mount everything, resume operations).
I line I used was:
# fsck.ocfs2 -v -y -f /dev/drbd0
I also attempted to reduce the chaos caused by rebooting lab46 and irc by doing an “xm save”… both seemed to behave, and restore without issue (I restored irc on the same machine as lab46). I forgot how powerful that functionality is… I may have to utilize it more in the future.
Implemented some refinements to minimize output on a daily e-mail, as well as better manage disk space consumed by user home directory backups.
Attention was focused on variable backups to keep per user, based on overall disk space usage:
############################################################## ## Obtain some per-user stats and format variables ## hist=4 userl=`echo "${user}" | sed 's/^.*\///g'` spaceused="`du -hs ${user} | tr '\t' ':' | cut -d':' -f1`" unit="`echo ${spaceused} | grep -o '.$'`" wholespace="`echo ${spaceused} | grep -o '^[0-9][0-9]*'`" printf "%11s" "[${userl}] " ############################################################## ## Set history for pruning ## if [ "${userl}" = "mail" ]; then hist=8 elif [ "${unit}" = "K" ]; then hist=8 elif [ "${unit}" = "M" ]; then if [ "${wholespace}" -ge 512 ]; then hist=2 elif [ "${wholespace}" -ge 128 ]; then hist=3 fi elif [ "${unit}" = "G" ]; then hist=1 fi