AWS에서 기존 EBS를 마운트 할 수 없습니다


28

기존 EBS 스토리지 (데이터가있는) 를 인스턴스에 마운트하려고 시도했지만 이 오류가 계속 발생합니다.

mount: wrong fs type, bad option, bad superblock on /dev/xvdf,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       dmesg | tail or so.

저장 세부 사항은 다음과 같습니다.

ec2-user@ip ~]$ sudo parted -l
Model: Xen Virtual Block Device (xvd)
Disk /dev/xvda: 8590MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name                 Flags
128     1049kB  2097kB  1049kB               BIOS Boot Partition  bios_grub
 1      2097kB  8590MB  8588MB  ext4         Linux


Model: Xen Virtual Block Device (xvd)
Disk /dev/xvdf: 16.1GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name                 Flags
128     1049kB  2097kB  1049kB               BIOS Boot Partition  bios_grub
 1      2097kB  16.1GB  16.1GB  ext4         Linux

dmesg | 꼬리는 다음과 같은 세부 사항을 보여줍니다

   [ec2-user@ip- ~]$ dmesg | tail
[    2.593163] piix4_smbus 0000:00:01.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    2.625565] evbug: Connected device: input0 (AT Translated Set 2 keyboard at isa0060/serio0/input0)
[    2.625568] evbug: Connected device: input2 (Power Button at LNXPWRBN/button/input0)
[    2.625570] evbug: Connected device: input3 (Sleep Button at LNXSLPBN/button/input0)
[    3.657958] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[    3.664979] evbug: Connected device: input4 (ImExPS/2 Generic Explorer Mouse at isa0060/serio1/input0)
[    5.731219] EXT4-fs (xvda1): re-mounted. Opts: (null)
[    5.938276] NET: Registered protocol family 10
[   11.720921] audit: type=1305 audit(1412199137.191:2): audit_pid=2080 old=0 auid=4294967295 ses=4294967295 res=1
[  101.024164] EXT4-fs (xvdf): VFS: Can't find ext4 filesystem
[ec2-user@ip- ~]$ 

답변:


56

해당 블록 장치를 분할 한 것 같습니다. 이 경우 /dev/xvdf1,뿐만 아니라 마운트해야합니다 /dev/xvdf.


작동하는 것 같습니다. 몇 분 후에 업데이트됩니다. 고마워
Sai

1
예. AWS 대시 보드를 사용하여 "xvdf"로 첨부 된 경우에도로 마운트해야합니다 xvdf1. 파티션 된 드라이브가 있는지 확인하려면 / dev :를 확인하십시오. ls /dev/xvdf*그렇다면 두 개 이상의 항목이 표시됩니다.
브렌트 파우스트

@Rubistro 블록 장치를 분할 한 경우에만 적용됩니다.
EEAA

이것은 문자 그대로 내 직업을 구했습니다. Amazon AWS 설명서가이 페이지 ( aws.amazon.com/articles/5213606968661598) 에서 이에 대해 언급하지 않는 것이 이상 합니다.
bigp
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.