Questions tagged [amazon-efs]

Amazon Elastic File System (Amazon EFS) is a managed cloud storage service, accessed using the NFS protocol version 4.1.

72 questions
0
votes
1 answer

How do I know if a file has been fully written when using AWS EFS

So I decided to use EFS as a shared filesystem for my EC2 instances. Our microservices, which are deployed on different instances, need to read and write to a shared space. One service basically puts the file to the known location, and the second…
codepushr
  • 111
  • 3
0
votes
1 answer

No route to host when trying to mount EFS on an EC2 instance

I am getting this output when running a mount -av on my EC2 instance: I already have the allow incoming in the security group for the IP of EFS and the allow for the IP of the EC2 in the security group attached to the EFS. I don't and can't have DNS…
rumplesmyboy
  • 109
  • 1
  • 7
0
votes
1 answer

Mounting EFS volume fails on elastic beanstalk deployment

I am trying to learn deploying on elastic beanstalk. I am following this particular doc to deploy a wordpress application with load balancers. Application deployment keeps failing with this error [Instance: i-] Command failed on…
0
votes
1 answer

Use Amazon repo in Centos 7

I set up a Centos 7 instance on EC2 and i need to mount a couple of EFS filesystems. Because Centos 7 and Amazon Linux 2 are pretty similar, I am wondering if could be possible to add Amazon Linux Extras in order to use amazon-efs-utils to mount EFS…
fromthestone
  • 347
  • 3
  • 16
0
votes
1 answer

pv and pvc - kube- efs

I am using PV with EFS. I have created a PV and PVC. My PV goes back to released status after I delete my StatefulSets. When I delete and re-apply my StatefulSets, it does not get attached to the same PV, instead the PVC status shows pending. My…
sumanth
  • 27
  • 3
0
votes
1 answer

Tool to track folder changes recursively in ubuntu 16.04

Is there any tool with which I would be able to track any changes happening recursively inside a particular folder? I have used inotifytools and fswatch but both are hitting the server performance because the folder I am watching is having a size…
0
votes
0 answers

modifying httpd.conf file apache aws EC2

0 down vote favorite I have an EFS file system mounted to multiple EC2 instances. I am trying to change apache config file. I don't want my index.html to be on the EC2 instance hard drive. Instead I want to move it to a directory in my EFS so I…
Ahmed
  • 103
  • 4
0
votes
2 answers

Apache ServerRoot on NFS and Mutex configuration

I'm working on a new setup for a "stateless server" that should be used as an Apache/Php node to deliver contents over the internet. My aim is to move the DocumentRoot and the ServerRoot to NFS (it will be EFS - Elastic File System on Aws) so that I…
Px2016
  • 109
  • 4
0
votes
1 answer

AWS CloudFormation creates EFS even with condition

I have a CloudFormation script that has the following: "Parameters": { "optionalExistingEFSDrive": { "Description": "EFS drive to store client content. If left empty a new drive will be created automatically.", "Type": "String", …
Glen Solsberry
  • 1,506
  • 5
  • 28
  • 35
0
votes
0 answers

Moodledata on EFS

I am in the process of setting up moodle an on AWS. I am a little bit confused about where to put my moodledata directory as I will need to read/write to this directory from multiple EC2 instances. I see that EFS is the best option but also read…
0
votes
1 answer

EFS 'sudo mount -t nfs4' hangs

I've created an EFS volume with Amazon. I then open up port 1194 for incoming UDP connections on the server I want to mount EFS to. I ssh into the server and then run the command suggested by Amazon: sudo mount -t nfs4 -o…
Philip Kirkbride
  • 249
  • 2
  • 10
  • 30
0
votes
2 answers

Possible to set AWS Elastic Beanstalk document root to EFS?

(Original asked on SuperUser, but now "on hold" - view) I'd really like to be able to use Elastic Beanstalk to host a Joomla application. However, there are a couple of issues: Users will need to be able to upload content to the Joomla site Joomla…
0
votes
0 answers

How configure Amazon EFS as data volume in Elastic Beanstalk web application windows .NET instance

I do have an .NET Application which I would like to deploy to Beanstalk. I would like to add an EFS to it. I tried but i did not was able to configure EFS with a windows Beanstalk. How can I configure it? I already tried adding .config files to the…
Daniel Santos
  • 158
  • 1
  • 8
0
votes
1 answer

AWS replication for running Odoo

I'm planning to run Odoo on AWS. I need to have real time replication so that we have fail-over. EC2 instances would just have Odoo running and would be put under ELB. RDS (multi - az) postgres would be the database and EFS storage would host all…
0
votes
0 answers

Debugging reads and writes of an NFS (Amazon EFS)

I have a Kirby CMS website (PHP server behind nginx reverse proxy) running in Amazon EFS. The most recent update of the site lead to 502 Bad Gateway and 504 Gateway Timeout errors. Looking at the nginx logs, I think that 502s are caused by…