sh 使用AWS控制台创建EBS卷并将其附加到EC2实例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用AWS控制台创建EBS卷并将其附加到EC2实例相关的知识,希望对你有一定的参考价值。

# Create an EBS volume using AWS console and attach it to the ec2 instance 

# Do the following on the instance

# create mount point
mkdir ~/ebs_tmp

# check the name of the disk 
lsblk

#> NAME    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
#> xvda    202:0    0     8G  0 disk
#> └─xvda1 202:1    0     8G  0 part /
#> xvdf    202:80   0   100G  0 disk

# check if it has a file system
sudo file -s /dev/xvdf
# ...likely not, in which case you get:
#> /dev/xvdf: data

# if no file system, then create it
sudo mkfs -t ext4 /dev/xvdf

# mount it
sudo mount /dev/xvdf /home/ubuntu/ebs_tmp/

# change perm
sudo chmod 777 ~/ebs_tmp/
 
# to unmount
sudo umount /home/ubuntu/ebs_tmp

# More here:
# http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-using-volumes.html

以上是关于sh 使用AWS控制台创建EBS卷并将其附加到EC2实例的主要内容,如果未能解决你的问题,请参考以下文章

将 EBS 添加到 Ubuntu EC2 实例

Terraform - 创建 EBS 的快照,然后将快照转换为 EBS 并附加到 EC2

将 EBS 卷附加到 AutoScalingGroup

使用 AWS Cookbook InvalidInstanceIDNotFound 的 Chef EC2 EBS 卷

AWS账户之间的克隆/传输EC2实例(AMI)

将多个 ebs 卷附加到每个 ec2 实例