/etc/fstab 中的动态 IP

Dynamic IP in /etc/fstab

我正在尝试在 AWS 中使用弹性文件系统 (EFS)...我的目标是使用 /etc/fstab

自动挂载它

由于 EC2 实例是跨可用区域自动扩展的,因此 EFS 挂载 IP 会根据实例的区域而变化。目前 AWS 提供此命令以将其安装到正确的区域...

sudo mount -t nfs4 -o nfsvers=4.1 $(curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone).fs-xxxx.efs.us-east-1.amazonaws.com:/ efs

但是,EFS DNS url 存在一些问题,我只能通过提供的 EFS IP 进行连接。所以我创建了一个 bash 脚本来获取与区域相关的正确 IP...

纳米/efsmount.sh

#!/bin/sh

CURR_ZONE=$(/usr/bin/curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone)

if [ "$CURR_ZONE" == "us-east-1e" ];then
    echo "172.xx.xx.xx"
fi
... more if statements to cover all zones

我可以使用这个脚本挂载

sudo mount -t nfs4 -o nfsvers=4.1 $(/efsmount.sh):/ /efs

现在我的问题是...如何使用 fstab 自动挂载?

这样的东西不起作用

$(/efsmount.sh):/  /efs   nfs      auto,noatime,nolock,bg,nfsvers=4.1,intr,tcp,actimeo=1800 0 0

谢谢

我能够使用 init.d 脚本在引导期间自动挂载 EFS。这是我遵循的说明:http://www.archisoft.ca/ami/lemp/#setting-up-efs-with-auto-mounting

此 init.d 脚本在启动时启动并循环执行一个函数,直到网络可用,然后尽快安装 EFS。

EFS 在 Web 服务器启动之前安装,因此驻留在 EFS 中的站点目录可以被 NGINX Web 服务器毫无问题地识别。

我认为这可能对某人有所帮助!

更新: 目前,EFS 已经允许您使用不依赖可用区的通用 URL(它始终指向正确的可用点).

您只需要使用像这样的 fstab 条目:

'file-system-id'.efs.'aws-region'.amazonaws.com:/  /path/to/dir  nfs4  nfsvers=4.1  0  0

旧回复:

我在 /etc/fstab 独立于可用性区域挂载 EFS 卷时遇到了同样的问题。

来自experoinc.com - Amazon’s Elastic File System: Kicking the Tires

Finally, it’s no fun having the EFS disappear when a machine reboots, so consider adding the EFS mount to the /etc/fstab of your machine image. Unfortunately, you have different mount points per availability zone, so it’s a little harder to bake into a per-region AMI as one usually does. It may be wise to configure in a provisioning script to be run on boot.

目前,我使用的解决方案是创建挂载助手 (/sbin/mount.efs-nfs4) 并使用它来挂载我的 EFS 卷。

这个助手的代码和说明在这个 Github 要点中:https://gist.github.com/rarylson/9095c56137a60a7fdb7bb2b420f0ad04

简而言之,使用它,你可以在/etc/fstab中放置这样一行,而无需在URL中指定可用区并使用efs-nfs4 "fake"文件系统类型:

'file-system-id'.efs.'aws-region'.amazonaws.com:/  /path/to/dir  efs-nfs4  nfsvers=4.1  0  0

然后运行:

mount /path/to/dir

EFS 文件系统也将在重新启动后的启动时挂载。

对我来说,当我手动停止和启动我的 EC2 实例时,使用 fstab(如亚马逊推荐的)不起作用。这对我来说是自动化的原因——我需要一个解决方案来处理灾难恢复场景、冷启动和离线垂直扩展(例如,当手动向 EC2 实例添加 RAM 时,您需要 'stop' 它,'add the RAM',然后 'start it')。对我来说它可以做到

 crontab -e

然后添加行

@reboot sudo mount -t nfs4 -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 fs-123ddddd.efs.us-east-1.amazonaws.com:/ /data