EC2 ड्राइव ईबीएस मात्रा आकार नहीं


18

मेरे पास एक EC2 उदाहरण है जिसके लिए मैंने 500GB EBS वॉल्यूम बनाया है। दुर्भाग्य से, EC2 उदाहरण केवल 8GB उपलब्ध दिखाता है।

मेरे पास केवल एक ड्राइव है, जो सही है।

[root@ip-10-244-134-250 ~]# ls -la /dev/x*
brw-rw---- 1 root disk 202, 1 Aug  7 08:54 /dev/xvda1

लेकिन, वह ड्राइव केवल 8GB का है

[root@ip-10-244-134-250 ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/xvda1            8.0G  1.3G  6.7G  16% /
tmpfs                 3.7G     0  3.7G   0% /dev/shm

लेकिन, fdisk और / proc / विभाजन दोनों सही आकार दिखाते हैं

[root@ip-10-244-134-250 ~]# fdisk -l

Disk /dev/xvda1: 536.9 GB, 536870912000 bytes
255 heads, 63 sectors/track, 65270 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/xvda1 doesn't contain a valid partition table

[root@ip-10-244-134-250 ~]# cat /proc/partitions 
major minor  #blocks  name

 202        1  524288000 xvda1

किसी भी सहायता का स्वागत है, धन्यवाद।

जवाबों:


34

यदि रूट फ़ाइल सिस्टम ext3 या ext4 है, तो चलाएं:

sudo resize2fs /dev/xvda1

यदि रूट फाइल सिस्टम xfs (कम सामान्य) है, तो चलाएं:

sudo xfs_growfs /

यदि आप रूट के रूप में लॉग इन हैं तो आप "सुडो" को छोड़ सकते हैं।

सिस्टम चलाने के दौरान इन कमांड को चलाया जाना चाहिए और फाइल सिस्टम को माउंट किया जाता है।

यह EBS संस्करणों के लिए मानक है जिसमें विभाजन तालिका नहीं है। ईबीएस की मात्रा आम तौर पर विभाजन के बिना अपनी संपूर्णता में एक फ़ाइल सिस्टम के रूप में स्वरूपित होती है।


2
मुझे समझाता है जब लोग बिना किसी स्पष्टीकरण के आपको वोट देते हैं। वैसे भी, यह खूबसूरती से काम किया। बहुत बहुत धन्यवाद!
ईसाई

1
/ मुझे सिकुड़ता है और जीवन के साथ आगे बढ़ता है :-) मदद करने के लिए खुशी है। यहाँ एक जोड़े से संबंधित लेख मैंने लिखा है: alestic.com/2009/12/ec2-ebs-boot-resize alestic.com/2010/2010/ec2-resize-running-ebs-root
एरिक हैमंड

2
ध्यान दें कि उबंटू एएमआई में शामिल क्लाउड-इनिट पैकेज स्वचालित रूप से बूट पर resize2fs चलाता है। मुझे आश्चर्य है कि यह अमेज़न लिनक्स में नहीं है क्योंकि वे क्लाउड-इनिट का भी उपयोग कर रहे हैं।
एरिक हैमंड

4
मेरे पास एक ही समस्या है और जब मैं कमांड चलाता हूं तो यह कहता है: फाइलसिस्टम पहले से ही 2096896 ब्लॉक लंबा है। कुछ करने को नहीं है! यह अभी भी 8GB है!
नियो

12

यहां उत्तर उन लोगों के लिए विशेष रूप से पुन: आकार देने से पहले कुछ कदम याद आ रहे हैं जो अपने ईबीएस वॉल्यूम आकार को बदल रहे हैं। यदि आपने ईबीएस बनाने के लिए एक स्नैपशॉट का उपयोग किया है या कुछ एएमआई के साथ आपको डिस्क (xvda) का विस्तार करने की आवश्यकता होगी, तो विभाजन (xvda1) का विस्तार करें, फिर फाइल सिस्टम (/) का विस्तार करें।

अगर मैं इसे सही ढंग से पढ़ रहा हूं, तो आपकी डिस्क इस तरह दिखती है:

/dev/xvda
|__/dev/xvda1__|______________ Free space______________|

इसे इस तरह देखना होगा:

/dev/xvda
|______________________/dev/xvda1______________________|

उसके बाद, रनिंग resize2fsउस नए स्थान में विकसित हो जाएगी xvda1, fdiskहम ब्लॉक आकार को हटाकर और इसे फिर से बनाकर और विभाजन को बूट करने योग्य बना सकते हैं। सभी की आवश्यकता है एक रिबूट है। ज्यादातर मामलों में यह आपके डेटा को प्रभावित नहीं करना चाहिए यदि आप एक ही स्टार्ट सिलेंडर का उपयोग करते हैं, लेकिन ध्यान दें कि पार्टीशन को रीक्रिएट करने में किसी भी गलती के परिणामस्वरूप सभी डेटा खो जाएगा और / या सर्वर रिबूट नहीं होगा। मैं इसे नए बनाए गए उदाहरण पर पहला कदम के रूप में करने की सलाह दूंगा। अन्यथा अपने EC2 EBS संग्रहण / आदि का स्नैपशॉट लें।

मैंने नीचे ब्लॉक में << # >> के साथ चरणों को चिह्नित किया है, इसलिए कमांड का हिस्सा नहीं हैं। आपको रूट अनुमतियों की आवश्यकता है, इसलिए यदि आप रूट नहीं हैं तो "सुडो श" करें।

<<1>> Look at the filesystem, it is 6G
<<2>> Look at the disk and the partition, the disk is 21.5 GB but the partition is 6 GB (6291456 blocks)
<<3>> Start fdisk for that disk (xvda, so not the partition xvda1)
<<4>> Switch to sector display.
<<5>> Print the partition(s), and remember the start sector (2048 in the example).
<<6>> Delete the partition.
<<7>> Create a new partition.
<<8>> Make it primary.
<<9>> First partition.
<<10>> Enter the old start sector, do NOT make any typo here!!! (2048 in the example) 
<<11>> Hit enter to accept the default (this is the remainder of the disk)
<<12>> Print the changes and make sure the start sector is ok, if not restart at <<6>>
<<13>> Make the partition bootable. do NOT forget this!!!
<<14>> Enter your partition number (1 in the example)
<<15>> Write the partition info back, this will end the fdisk session.
<<16>> Reboot the server, and wait for it to come up (this may take longer than usual).
<<17>> Verify the filesystem size.
<<18>> If the filesystem is not around 20Gb as expected, you can use this command.


# df -h  <<1>>

Filesystem      Size  Used Avail Use% Mounted on
/dev/xvda1      6.0G  2.0G  3.7G  35% / 
tmpfs            15G     0   15G   0% /dev/shm

# fdisk -l  <<2>>

Disk /dev/xvda: 21.5 GB, 21474836480 bytes
97 heads, 17 sectors/track, 25435 cylinders
Units = cylinders of 1649 * 512 = 844288 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003b587

    Device Boot      Start         End      Blocks   Id  System
/dev/xvda1   *           2        7632     6291456   83  Linux

# fdisk /dev/xvda  <<3>>

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): u  <<4>>
Changing display/entry units to sectors

Command (m for help): p  <<5>>

Disk /dev/xvda: 21.5 GB, 21474836480 bytes
97 heads, 17 sectors/track, 25435 cylinders, total 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003b587

    Device Boot      Start         End      Blocks   Id  System
/dev/xvda1   *        2048    12584959     6291456   83  Linux

Command (m for help): d  <<6>>
Selected partition 1

Command (m for help): n  <<7>>
Command action
   e   extended
   p   primary partition (1-4)
p  <<8>>
Partition number (1-4): 1  <<9>>
First sector (17-41943039, default 17): 2048  <<10>>
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039): <<11>>
Using default value 41943039

Command (m for help): p <<12>>

Disk /dev/xvda: 21.5 GB, 21474836480 bytes
97 heads, 17 sectors/track, 25435 cylinders, total 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003b587

    Device Boot      Start         End      Blocks   Id  System
/dev/xvda1            2048    41943039    20970496   83  Linux

Command (m for help): a  <<13>>
Partition number (1-4): 1  <<14>>


Command (m for help): w  <<15>>
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: ...
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.

# reboot  <<16>>

<wait>

# df -h  <<17>>
Filesystem      Size  Used Avail Use% Mounted on
/dev/xvda1       20G  2.0G   17G  11% / 
tmpfs            15G     0   15G   0% /dev/shm

# resize2fs /dev/xvda1  <<18>>
resize2fs 1.41.12 (17-May-2010)
Filesystem at /dev/xvda1 is mounted on /; on-line resizing required
old desc_blocks = 1, new_desc_blocks = 2
Performing an on-line resize of /dev/xvda1 to 5242624 (4k) blocks.
The filesystem on /dev/xvda1 is now 5242624 blocks long.

root@vs120 [~]#  df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/xvda1       20G  7.8G   11G  42% /
tmpfs           498M     0  498M   0% /dev/shm
/usr/tmpDSK     399M   11M  368M   3% /tmp
root@vs120 [~]#

1
यदि पार्टीशन को विभाजित किया जाता है, तो विभाजन का विस्तार करना आवश्यक है। EC2 पर यह बहुत दुर्लभ है। ईबीएस के साथ सबसे अच्छा अभ्यास यह है कि पूरे कच्चे वॉल्यूम को फ़ाइल सिस्टम के साथ पहले बिना स्थिति के प्रारूपित किया जाए। यह बूट वॉल्यूम के लिए विशेष रूप से सच है। पोजिशनिंग शारीरिक डिस्क की एक कलाकृति है, जहां वे आपके फ़ाइल सिस्टम के लिए इच्छित आकार नहीं हैं। EC2 पर, आप बस सही आकार का EBS वॉल्यूम बनाते हैं और बिना विभाजन के कच्चे वॉल्यूम पर फ़ाइल सिस्टम को ड्रॉप करते हैं।
एरिक हैमंड

1
मैं दुर्लभ के बारे में नहीं जानता, यह मेरे लिए सेंटोस ईसीडी इंस्टेंस के साथ लॉन्च किए गए दोनों सेंटोस ईसी 2 उदाहरणों पर हुआ।
नियो

आपके द्वारा उपयोग किए गए CentOS AMI को किसने प्रकाशित किया?
एरिक हैमंड

@EricHammond centos.org
नियो

4
मैं विभाजन के मूल ईबीएस संस्करणों के साथ एएमआई के निर्माण को रोकने के लिए centos.org की याचिका की सिफारिश करूंगा। यदि आप एक ही विभाजन का उपयोग कर रहे हैं तो इसका कोई लाभ नहीं है और यह आकार परिवर्तन को अधिक कठिन बनाता है। अमेज़ॅन अपने एएमआई के साथ ऐसा नहीं करता है। न ही उबंटू, रेड हैट, और अन्य। बिना किसी अतिरिक्त अवरोध के कच्चे ईबीएस वॉल्यूम पर फ़ाइल सिस्टम को बस रखना एक सर्वोत्तम अभ्यास है, जिसे आकार बदलने की आवश्यकता होती है।
एरिक हैमंड

2

EBS वॉल्यूम पर फ़ाइल सिस्टम का आकार बदलें। यदि आप चला रहे हैं ext3(जो आमतौर पर डिफ़ॉल्ट है), तो आप बस चला सकते हैं e2resize /dev/xvda1


वॉल्यूम को पहले ऑफ़लाइन और डिस्क-माउंटेड होना चाहिए।
फरहान

1
किसी भी भी साथ थोड़ा आधुनिक Linux वितरण। Ext3 फाइल सिस्टम के ऑनलाइन विस्तार को वर्षों से समर्थन दिया गया है।
Womble

धन्यवाद womble, मैं aws distro का उपयोग कर रहा हूँ और e2resize वहाँ पर नहीं है। यह किसी भी यम रेपो में नहीं है। क्या मुझे सिर्फ स्रोत प्राप्त करना चाहिए और इसे स्वयं बनाना चाहिए?
ईसाई

1

मैंने @ उत्तर से एक कस्टम उबंटू एएमआई से बनाए गए उदाहरण से कोशिश की। स्पष्टीकरण बहुत मददगार था, लेकिन मुझे इकाइयों को ब्लॉक के रूप में रखने की जरूरत थी और बस चरण # 4 को छोड़ दिया। यह तो पूरी तरह से काम किया।

इसके अलावा सिर्फ एक बिंदु यह है कि चरण # 5 में आपको चरण # 10 में उपयोग करने के लिए शुरुआती ब्लॉक / सिलेंडर की प्रतिलिपि बनाना होगा।

@ नियो का उत्तर है कि यदि आपके पास एक विभाजित वर्चुअल डिस्क डिवाइस है। आप निम्न के साथ इस समस्या से पीड़ित होने पर पा सकते हैं: lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT xvda 202:0 0 30G 0 disk └─xvda1 202:1 0 5G 0 part / xvda और xvda1 बहुत अलग आकार हैं। आप resize2fs कर सकते हैं और इससे कोई फर्क नहीं पड़ेगा, मेरे मामले में xvda1 5G है और यह सभी फाइलसिस्टम का उपयोग करेगा।

धन्यवाद, @Neo

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.