Create and mount an Amazon EFS file system to multiple EC2 Instances

Опубликовано: 22 Октябрь 2024
на канале: JasCloudTech
804
36

Amazon EFS provides a simple, scalable, elastic NFS file system for Linux-based workloads for use with AWS Cloud services and on-premises resources, at an effective price of just $0.08/GB-month*. Thousands of EC2 instances can mount an EFS file system and share file data.

Related Videos
Amazon Elastic Block Store | EBS Volumes |Attach |Detach |Resizing |Snapshot
   • Amazon Elastic Block Store | EBS Volu...  

Create EC2 Instance in AWS I Run Web Server using User Data | AWS EC2
   • Create EC2 Instance in AWS  I Run Web...  

EC2 instance lost keys or Access? Here's how to get it back!
   • EC2 instance lost keys or Access? Her...  

AWS Project: Basic Web APP (Front + Back End(Application Architecture |API + Database Interactivity)
   • AWS Project: Basic Web APP (Front + B...  

User data
#!/bin/bash
yum update -y
yum install -y httpd
systemctl start httpd