AWS标准扩容(三)

AWS扩容过程:

You can increase the storage space of an existing EBS volume without losing the data on the volume.

你能够不丢数据地增加现在EBS卷上的存储空间。

To do this, you migrate your data to a larger volume and then extend the file system on the volume to recognize the newly-available space. After you verify that your new volume is working properly, you can delete the old volume.要做到这一点,你迁移你的数据到一个更大的卷然后扩展卷上的文件系统来识别新的可用空间。在你验证新的卷工作正常后,你可以删除老的卷。

  1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.打开EC2Console
  2. In      the navigation pane, choose Instances and      then locate the instance with the volume that you want to expand. 找到导航窗格,选择“Instances”然后找到需要扩容的实例
  3. Make      a note of the instance ID and Availability Zone. You will specify this      information when you attach a new volume to the instance later in this      procedure.记录下实例的ID号和可用区域。当你附加一个新的磁盘到此实例的过程中你需要指定这些信息。
  4. Verify      that the instance Shutdown      Behavior is set to Stop and not Terminate.
    1. Choose the instance.
    2. From       the context-menu (right-click) choose Instance Settings, and then choose Change Shutdown Behavior.
    3. If       the Shutdown behavior is       set to Terminate,       choose Stop,       and then choose Apply.
                   If the Shutdown       behavior is already set to Stop, then choose Cancel.

核实是被stop而不是terminate.a.选择实例  b.右击选择“Instance settings”然后,选择“Change shutdown behavior”. c.如果“shutdown behavior”将被设置为“Terminate”,选择“Stop”,然后选择“Apply”;如果“shutdown behavior”已经被设置为“Stop”,选择“Cancel”.

5. Stop the instance. For more      information about how to stop an instance, see Stopping and Starting Your Instances.
           Warning
           When you stop an instance, the data on any      instance store volumes is erased. Therefore, if you have any data on      instance store volumes that you want to keep, be sure to back it up to persistent storage.

停止实例。如果有数据放在instance store,请备份到persistent storage.

6. Create a snapshot of the volume to expand.

    1. In the navigation pane, choose Volumes, and then locate the volume you want to expand.
    2. From       the context-menu (right-click) choose the volume that you want to       expand, and then choose Create Snapshot.
    3. Enter       information in the Name and Description fields,       and then choose Yes,       Create.

创建一个卷的snapshot用于扩展。右击需要做snapshot的磁盘创建snapshot,加入名字和描述。

7. Create a new volume from the snapshot.

    1. In the navigation pane, choose Snapshots.
    2. When       the status of the snapshot that you just created is set to completed, choose the snapshot, and       then from the context-menu (right-click) choose Create Volume.
    3. In       the Create Volume dialog       box, choose the desired volume type and enter the new volume size. You       must also set the Availability       Zone to match the instance       Availability Zone. Choose Yes, Create.
                   Important
                   If you do not set the Availability Zone to       match the instance then you will not be able to attach the new volume to       the instance.

创建新的卷对于这个snapshot.当 备份完毕后右击这个snapshot创建卷。输入卷的类型和大小。你必须把它放在可用区域。

8. Detach the old volume.

    1. In the navigation pane, choose Volumes, and then choose the old volume from the list. Make a note       of the device name in the Attachment Information field. You will specify this information when you attach a       new volume to the instance later in this procedure. The information       appears in the following format:
                   i-xxxxxxxxxxxxxxxxx (instance_name):device_name
    2. From       the context-menu (right-click) choose the old volume, and then choose Detach Volume.
    3. In       the Detach Volume dialog       box, choose Yes,       Detach. It may take several minutes for the       volume to detach.

分离老的卷。

  1. 找到老的卷,记下设备名称,在attachment      information你可以找到。当你附加一个新的卷在这个实例的时候你需要指定这个信息。
  2. 右击老的卷,然后选择detach      volume.
  3. 选择yes,detach.

9. Attach the newly expanded volume

    1. In the navigation pane, choose Volumes.
    2. From       the context-menu (right-click) choose the new volume, and then choose Attach Volume.
    3. Start       typing the name or ID of the instance in the Instance field,       and then choose the instance.
    4. Enter the same device name retrieved in Step       8.a, and then choose Yes,       Attach. It is important to attach       the new volume to the exact location you noted above (for example /dev/sda1).

附加新的扩展过的卷。

a.右击,选择attach volume.

b.输入实例的名字和Id在“instance”这个字段,选择实例。

c.输入设备名称,选择yes,attach.

10.Restart the instance.

    1. In the navigation pane, choose Instances and then choose the instance you want to       restart.
    2. From       the context-menu (right-click) choose Instance State, and then choose Start.
    3. In       the Start Instances dialog       box, choose Yes,       Start. If the instance fails to start, and the volume being       expanded is a root volume, verify that you attached the expanded volume       using the same device name as the original volume, for example /dev/sda1.

重启实例,右击实例,选择instance state,然后选择start. 然后选择yes,start.

  1. 注意:

Note

After you are done resizing your volume, you should delete the snapshot you created in the procedure above to avoid incurring storage costs.

在你resize你的卷后,你应该删除刚刚创建的snapshot,避免招致存储花费。

11. Extending a Linux File System扩展文件系统:

For ext2, ext3, and ext4 file systems, this command is resize2fs. For XFS file systems, this command is xfs_growfs.注意在使用xfs_growfs需要安装包:

sudo yum install xfsprogs

Then use the following command, substituting the mount point of the file system (XFS file systems must be mounted to resize them).注意下括号里面的内容:xfs文件系统必须挂载状态。

[ec2-user ~]$ sudo xfs_growfs -d /mnt

怎么查看文件系统的类型:

file -s /dev/xvd*

显示块设备:

lsblk command to list the block devices attached to your instance. The example below shows three volumes: /dev/xvda, /dev/xvdb, and /dev/xvdf.

注意:

Note

If you receive an xfsctl failed: Cannot allocate memory error, you may need to update the Linux kernel on your instance. For more information, refer to your specific operating system documentation.

如果是收到一个:xfsctl faild:cannot 分配内存错误,你或许需要更新linux内核了。

时间: 2024-10-19 22:12:02

AWS标准扩容(三)的相关文章

Go语言开发(十三)、Go语言常用标准库三

Go语言开发(十三).Go语言常用标准库三 一.sync 1.sync简介 sync提供基本的同步原语,如sync.Mutex,sync.RWMutex,sync.Once,sync.Cond,sync.Waitgroup,除了Once和WaitGroup类型外,大多数类型都供低级库使用.Go语言中,不要通过共享内存通信,而要通过通信共享内存,通过Channel和沟通可以更好地完成更高级别的同步. type Locker interface { Lock() Unlock() } Locker提

Web标准:三、二列和三列布局

知识点: 1.二列自适应宽度 2.二列固定宽度 3.二列固定宽度居中 4.xhtml的块级元素(div)和内联元素(span) 5.float属性 6.三列自适应宽度 7.三列固定宽度 8.三列固定宽度居中 9.IE6的3像素bug 1)二列自适应宽度 div为块级元素,默认情况下占据一行的空间,要想让下面的div跑到右侧,需要做css的浮动来实现. 在#side里面加上float:left;即可 说明:当我们不加float时,可以看到div占据的是一行 但是如果加了float:left后,可以

Azure RIS的工作原理以及其与AWS RIs的比较

微软在2018年初宣布了针对Azure的Reserved Instances,新的Azure Reserved Instances与AWS的实例保留(RIs)有很多相似之处,但是他们也有一些关键的差别.从积极的方面看,和AWS RIs的按需价格相比Azure RIs可以提供更高的节省水平,它也有额外的灵活性.然而我们应该注意到Azure RIs也有一些限制和缺点. 灵活性: Azure RIs提供了相当多的灵活性.使用户可以像使用AWS可转换RIs一样将Azure RIs替换为其他RIs.然而A

陈松松:选择适合视频营销暴利产品的4大标准

本文作者:陈松松 每个视频,都是你的金牌业务员 这是我的第5篇视频营销原创文章 我知道你一定会大致看一下,但今天的文章一定要一字不落! 今天的这个分享有关最适合视频营销的暴利产品,是我很早就想分享的,只是没有合适的机会! 主题也比较简单,核心内容我总结为4点: 第一,人得逼,马得骑 第二,选择视频营销暴利产品的4大标准 第三,送你1款最暴利的是视频营销产品 第四,商业的本质就是信息不对称 第五,给你2个选择暴利产品的平台做参考 我先来分享第一点, 第一,人得逼,马得骑 写文章真的是越来越有感觉了

检测PHP程序员是否合格的四十条标准

四十条标准检测你是否是一个合格的PHP程序员,网上看到的,也不知道是谁出的标准,不官方,也不权威,但很给力,对在做php开发的同志们还是比较有参考性的.以下标准超过三条就不合格了.超过五条就得好好反省下自己的不足了.不可当真,仅供参考反省之用.1. 不会利用如phpDoc这样的工具来恰当地注释你的代码2. 对优秀的集成开发环境如 EclipsePHP EPP 或 Zend Studio PDT视而不见3. 从未用过任何形式的版本控制系统,如Subclipse4. 不采用某种编码与命名标准,以及通

11--法律法规、标准规范和职业道德

一.法律法规和标准规范1.中国标准划分为哪四个层次?要求最低的是哪个? <中华人民共和国标准化法>将标准划分为4个层次:即国家标准.行业标准.地方标准和企业标准.其中国家标准要求最低. 2.国家标准的制订程序包括哪些? 国家标准的制定有一套正常程序,每一个过程都要按部就班地完成,这个过程分为前期准备.立项.起草.征求意见.审查.批准.出版.复审和废止9个阶段. 3.ISO标准每几年复审一次?我国国家标准的有效期几年复审一次? ISO标准每5年复审一次,我国国家标准的有效期一般为5年. 4.请说

信管师培训之第十一节课作业(法律法规+标准规范+职业道德)

一.法律法规和标准规范1.中国标准划分为哪四个层次?要求最低的是哪个? <中华人民共和国标准化法>将标准划分为4个层次:即国家标准.行业标准.地方标准和企业标准.其中国家标准要求最低. 2.国家标准的制订程序包括哪些? 国家标准的制定有一套正常程序,每一个过程都要按部就班地完成,这个过程分为前期准备.立项.起草.征求意见.审查.批准.出版.复审和废止9个阶段. 3.ISO标准每几年复审一次?我国国家标准的有效期几年复审一次? ISO标准每5年复审一次,我国国家标准的有效期一般为5年. 4.请说

2016年4月11日作业(法律法规、标准规范、职业道德)

一.法律法规和标准规范1.中国标准划分为哪四个层次?要求最低的是哪个?P498 答:<中华人民共和国标准化法>将标准划分为4个层次,既国家标准.行业标准.地方标准和企业标准.国家标准的要求最低.2.国家标准的制订程序包括哪些? 答:前期准备.立项.起草.征求意见.审查.批准.出版.复审和废止9个阶段.3.ISO标准每几年复审一次?我国国家标准的有效期几年复审一次? 答:ISO标准每5年复审一次:国家标准实施5年内要进行复审,既国家标准有效期一般为5年.4.请说明如下是什么标准?GB.GB/T.

Python标准库——走马观花

Python标准库——走马观花 作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! Python有一套很有用的标准库(standard library).标准库会随着Python解释器,一起安装在你的电脑中的.它是Python的一个组成部分.这些标准库是Python为你准备好的利器,可以让编程事半功倍. 我将根据我个人的使用经验中,挑选出标准库三个方面的包(package)介绍: Python增强 系统互动 网络 第一类:Pyth