Im attempting to resize a filesystem on a mulipathed volume that I've grown, rescanned all the disks, and resized the multipath map.
# resize2fs /dev/mapper/my_vol
resize2fs 1.43-WIP (20-Jun-2013)
Filesystem at /dev/mapper/my_vol is mounted on /var/lib/myvol; on-line resizing required
old_desc_blocks = 6, new_desc_blocks = 12
resize2fs: Permission denied to resize filesystem
# strace -f resize2fs /dev/mapper/my_vol
(finishes with)
....snip....
write(1, "Filesystem at /dev/mapper/my_vol"..., 101Filesystem at /dev/mapper/my_vol is mounted on /var/lib/myvol; on-line resizing required
) = 101
write(1, "old_desc_blocks = 6, new_desc_bl"..., 42old_desc_blocks = 6, new_desc_blocks = 12
) = 42
access("/sys/fs/ext4/features/meta_bg_resize", R_OK) = 0
open("/var/lib/my_vol", O_RDONLY) = 4
ioctl(4, 0x40086610, 0x7fffb729c2e8) = -1 EPERM (Operation not permitted)
write(2, "resize2fs", 9resize2fs) = 9
write(2, ": ", 2: ) = 2
write(2, "Permission denied to resize file"..., 38Permission denied to resize filesystem) = 38
ioctl(2, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(2, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
write(2, "\n", 1
) = 1
exit_group(1) = ?
I would like to keep this server up as it hosts many virtual machines, and I've not experienced permission denied when running a resizefs as root before, what could be denying root a simple resize? Any help greatly appreciated.
The server has selinux disabled, and the multipath -ll shows the volume in a read-write state. (wp=rw)
myvol (3600c0ff00013d24d8c20725301000000) dm-12 HP,P2000 G3 iSCSI
size=186G features='1 queue_if_no_path' hwhandler='0' wp=rw
I have noticed that ls -ld on the mount point shows
drwxr-xr-x 5 root root 4096 Jan 27 12:49 myvol
and not
drwxr-xr-x. 5 root root 4096 Jan 27 12:49 myvol
#ls -Zd myvol
drwxr-xr-x root root ? myvol
Related?
Same problem -- turned out my FS had some inconsistencies:
/dev/mapper/
may contain block devices instead of symlinks. If so, remove them, runudevadm trigger
. Worked for Debian 7.8.I ended up having to boot my machine from OS disk image and use Linux rescue mode to allow me to run a manual fsck -y /dev/****** to fix my filesystem.
The resize2fs worked fine after that.