My home lost power yesterday and even though my NAS was hooked up to a UPS and had an expected shutdown, I'm now having issues with the filesystem mounting. I got this email from the monitor service:
Code
Status failed Service mountpoint_srv_dev-disk-by-label-Backup
Date: Tue, 20 Oct 2020 13:03:53
Action: alert
Host: NAS
Description: status failed (1) -- /srv/dev-disk-by-label-Backup is not a mountpoint
Your faithful employee,
Monit
I tried looking in other threads which I thought would offer solutions
but since this situation involves my entire shared file storage I'm very hesitant to try instructions I'm not certain of.
I SSH'd into my OMV box and tried looking around. When I check /etc/monit/conf.d/openmediavault-filesystem.conf this is what I found:
Code: /etc/monit/conf.d/openmediavault-filesystem.conf.
# Alert if disk space of root filesystem gets low
check filesystem rootfs with path /
if space usage > 85% for 5 times within 15 cycles
then alert else if succeeded for 10 cycles then alert
check filesystem filesystem_srv_dev-disk-by-id-md-name-NAS-StoragePool with path "/srv/dev-disk-by-id-md-name-NAS-StoragePool"
if space usage > 85% for 5 times within 15 cycles
then alert else if succeeded for 10 cycles then alert
check program mountpoint_srv_dev-disk-by-id-md-name-NAS-StoragePool with path "/bin/mountpoint '/srv/dev-disk-by-id-md-name-NAS-StoragePool'"
if status != 0 then alert
check filesystem filesystem_srv_dev-disk-by-label-Backup with path "/srv/dev-disk-by-label-Backup"
if space usage > 85% for 5 times within 15 cycles
then alert else if succeeded for 10 cycles then alert
check program mountpoint_srv_dev-disk-by-label-Backup with path "/bin/mountpoint '/srv/dev-disk-by-label-Backup'"
if status != 0 then alert
Display More
Does anyone have any recommendations for what I can do or research to get this filesystem to mount?