首页 > 代码库 > shell脚本重新挂载出问题的卷
shell脚本重新挂载出问题的卷
#!/bin/bash
#卷的全路径示例
#pathexample =mount -t cetusfs 127.0.0.1:/cinderv/var/lib/cinder/volumes/0f6a20f4d81ed9db37f2a87260dd7181
volumesPath=`df -h |awk ‘{print$1$6}‘|grep volumes` #获取卷路径
pathRow=`df -h |awk ‘{print$1$6}‘|grep volumes|wc -l` #列出卷的数量
print pathRow
print volumesPath
#strerror=`ll $volumesPath|grep error` #获取改卷是否有error字符
#判断如果$error不为空则umount出错卷,然后重启服务,mount卷,如果返回为空则endif
for i in NF
do
strerror=`df -h|grep volumes|awk ‘NR == i{print$6}‘`
str=`ls "$strerror"`
if [ -n "$strerror"]
then
umount "$volumesPath"
service cinder-volume restart
mount -t cetusfs "$volumePath"
fi
done
shell脚本重新挂载出问题的卷
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。