码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本重新挂载出问题的卷

时间:2016-12-01 14:12:26      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:cinder   end   返回   获取   bash   脚本   int   pat   bin   

#!/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脚本重新挂载出问题的卷

标签:cinder   end   返回   获取   bash   脚本   int   pat   bin   

原文地址:http://www.cnblogs.com/never-ending/p/6121263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!