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

linux磁盘动态扩容时无法umount

时间:2016-07-19 02:34:42      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:ecs   error   umount   in use   

之前阿里云的磁盘空间是200G的,由于业务原因,现在要提升到400G

 

下面是操作详情:

[root@localhost /]# umount /data
umount.nfs: /data: device is busy
[root@localhost /]# umount -lf /data
成功!
[root@localhost /]# fdisk /dev/xvdb
WARNING: Re-reading the partition table failed with error 16: Device or resource busy. The kernel still uses the old tab
......

瞬间整个人都不好了,已经卸载了,还有进程调用。。。。。。

通过下面命令查看是哪个进程在使用

[root@iZ25papb7g2Z ~]# fuser -m -v /data

                     USER        PID ACCESS COMMAND

/data:               root       1332 F..e. httpd

                     daemon     1333 F..e. httpd

                     root       1340 F..e. nginx

                     www        1341 F..e. nginx

然后关闭服务(特殊进程可以kill或者kill -9)

重新umount/fdisk一次成功

本文出自 “IT--小哥” 博客,请务必保留此出处http://402753795.blog.51cto.com/10788998/1827354

linux磁盘动态扩容时无法umount

标签:ecs   error   umount   in use   

原文地址:http://402753795.blog.51cto.com/10788998/1827354

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