|
[root@xinet ~]# mount /dev/xvdc2 /fail_disk/ mount: wrong fs type, bad option, bad superblock on /dev/xvdc2, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so. |
네이버 클라우드 및 온프라미스 환경에서 동일한 디스크를 마운트 하는 경우 위와 같이 에러가 발생되는 경우가 있다
이 문제는 uuid값이 동일하기 때문에 마운트가 되지 않는것이다
blkid 명령어를 내려보면 xvda2 와 xvdc2의 uuid값이 동일한것을 확인 할 수 있다
|
[root@xinet ~]# blkid /dev/xvdb1: UUID="fd185e51-1b79-4e3b-8eda-2eff08dc6e75" TYPE="xfs" /dev/xvdc1: UUID="f95bed0a-11af-4b2c-bfcc-4afb91a68fc1" TYPE="xfs" /dev/xvdc2: UUID="0692fdb8-bb3c-4094-83f0-fe95a339b8c1" TYPE="xfs" /dev/xvda1: UUID="f95bed0a-11af-4b2c-bfcc-4afb91a68fc1" TYPE="xfs" /dev/xvda2: UUID="0692fdb8-bb3c-4094-83f0-fe95a339b8c1" TYPE="xfs" |
그럼 uuid값을 변경해서 마운트를 진행해보자
1. uuidgen 명령어로 값을 만든다
|
[root@xinet ~]# uuidgen 78ab215e-b1fc-4f22-8a77-46e3133c4e8a |
2. 리페어 진행
|
[root@xinet ~]# xfs_repair -L /dev/xvdc2 |
3. xfs_admin 명령어로 새롭게 uuid를 지정한다 마운트할 파티션명
|
[root@xinet ~]# xfs_admin -U 78ab215e-b1fc-4f22-8a77-46e3133c4e8a /dev/xvdc2 Clearing log and setting UUID writing all SBs new UUID = 78ab215e-b1fc-4f22-8a77-46e3133c4e8a |
4. 이제 마운트를 진행
|
[root@xinet ~]# mount /dev/xvdc2 /fail_disk [root@xinet ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 0 1.9G 0% /dev/shm tmpfs 1.9G 9.1M 1.9G 1% /run tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/xvda2 49G 9.0G 41G 19% / /dev/xvdb1 10G 2.9G 7.2G 29% /free /dev/xvda1 1014M 192M 823M 19% /boot tmpfs 377M 0 377M 0% /run/user/0 /dev/xvdc2 49G 8.9G 41G 18% /fail_disk |
5. blkid로 확인하면 변경된것을 확인
|
[root@xinet ~]# blkid /dev/xvdb1: UUID="fd185e51-1b79-4e3b-8eda-2eff08dc6e75" TYPE="xfs" /dev/xvdc1: UUID="8df0d985-6f92-42ee-be1d-0e5c28218774" TYPE="xfs" /dev/xvdc2: UUID="78ab215e-b1fc-4f22-8a77-46e3133c4e8a" TYPE="xfs" /dev/xvda1: UUID="f95bed0a-11af-4b2c-bfcc-4afb91a68fc1" TYPE="xfs" /dev/xvda2: UUID="0692fdb8-bb3c-4094-83f0-fe95a339b8c1" TYPE="xfs" |