EBS attach & detach

此篇是參考官方說明+使用心得&發生官方說明無法排除時估狗到的資料

先用 lsblk 看一下要卸載的是哪一個,免得弄錯;之後再按照 AWS 說的做
umount -d /dev/sdh

但我遇到執行完後出現


估狗到的資料要我
umount -l /mountpoint/


然後就沒問題了................

/home/ubuntu# umount

Usage:
 umount [-hV]
 umount -a [options]
 umount [options] <source> | <directory>

Unmount filesystems.

Options:
 -a, --all               unmount all filesystems
 -A, --all-targets       unmount all mountpoints for the given device in the
                           current namespace
 -c, --no-canonicalize   don't canonicalize paths
 -d, --detach-loop       if mounted loop device, also free this loop device
     --fake              dry run; skip the umount(2) syscall
 -f, --force             force unmount (in case of an unreachable NFS system)
 -i, --internal-only     don't call the umount.<type> helpers
 -n, --no-mtab           don't write to /etc/mtab
 -l, --lazy              detach the filesystem now, clean up things later
 -O, --test-opts <list>  limit the set of filesystems (use with -a)
 -R, --recursive         recursively unmount a target with all its children
 -r, --read-only         in case unmounting fails, try to remount read-only
 -t, --types <list>      limit the set of filesystem types
 -v, --verbose           say what is being done

 -h, --help     display this help and exit
 -V, --version  output version information and exit

For more details see umount(8).

接下來是 mount 的部分
要把剛 detach 的 volume 掛載到另一台
依照 AWS 的文件,要用
sudo mount device_name mount_point

詳細指令如下
1.format
mkfs.ext4 /dev/xvdf

2.format 之後要 mount 到 directory
先建目錄
mkdir /data1

3.mount /dev/xvdf /data1

接下來可以 umount 以方便接下來的作業/測試

接著要修改 /etc/fstab 這個檔案
之後重開機才會自己掛上
但這邊格式和 AWS 說的有點不同
格式如下
<file system> <dir> <type> <options> <dump> <pass>
/dev/xvdf       /newvolume   ext4    defaults,nofail

前面的 /dev/xvdf 是指要掛載的 driver
接著是 /newvolume 這個是要掛載的點(mount point)
再來是 partition 種類 ext4
然後defaults,nofail 這是掛載時使用的引數,詳細可參考這裡
最後還有 <dump> <pass> 這部分也可參考這裡

執行 mount -a 看是不是會自動掛載
可以再 umount /data1 之後重新開機確認開機後是否會自動掛載
若不會的話要檢查一下中間的步驟是否有誤

這篇是參考這裡和 AWS 的文件寫的

留言