- 81
- 520 047
The Cloud World
India
เข้าร่วมเมื่อ 1 ต.ค. 2020
Create & Mount EBS Volume to EC2 Instance || AWS Services #ec2 #ebs
Attach EBS Volume to EC2 Instance || AWS Services #ec2 #ebs
Format & Mount EBS Volume
- use cammand “lsblk” to see the list of disks attached. If you have used “/dev/sd[f-p]” while attaching to instance.
- EC2 replaces the name internally from /dev/sd[f-p] to /dev/xd[f-p]
- ‘lsblk’ command removes the /dev/ from disk name
- Now to proceed further with disk mount, you need to first check whether the attached disk is having file system. use command “sudo file -s /dev/xvdf”
- If the output is ‘/dev/xvdf: data’, means there is not file system.
- Now you need to proceed with the creation of File system
- If you have the file system, you will get the output as below ‘/dev/xvda1: SGI XFS filesystem data (blksz 4096, inosz 512, v2 dirs)’
- If you have an empty volume, use ‘mkfs -t’ to create a file system
Note: Do not use the command ‘mkfs -t’ on the volume already having file system & data. If you use this command on the such volumes, formatting gonna erase all the previous data
- command: ‘sudo mkfs -t xfs /dev/xvdf’
- Command to Mount: ‘sudo mount /dev/xvdf /data’
- Once you do this, you directory ‘/data’ gets mounted on your ec2 instance, but this is temporary as it will be demounted whenever you restart your instance. You will always have to remount it whenever you restart
Automatically mount an attached volume after reboot
- To mount an attached EBS volume on every system reboot, add an entry for the device to the /etc/fstab file.
- You can use /dev/xvdf in /etc/fstab, but its better to use UUID always, because UUID are alive for the lifetime of the partition
- use ‘sudo blkid’, to find the UUID
- open ‘/etc/fstab’ , use command: sudo vim /etc/fstab
- In the following example, we mount the device with UUID aebf131c-6957-451e-8d34-ec978d9581ae to mount point /data and we use the xfs file system. We also use the defaults and nofail flags. We specify 0 to prevent the file system from being dumped, and we specify 2 to indicate that it is a non-root device.
“UUID=aebf131c-6957-451e-8d34-ec978d9581ae /data xfs defaults,nofail 0 2”
- Once done, you can test this by giving below commands
‘sudo umount /data’
‘sudo mount -a’
- Above command shouldn’t throw an error if disks were mounted properly
Format & Mount EBS Volume
- use cammand “lsblk” to see the list of disks attached. If you have used “/dev/sd[f-p]” while attaching to instance.
- EC2 replaces the name internally from /dev/sd[f-p] to /dev/xd[f-p]
- ‘lsblk’ command removes the /dev/ from disk name
- Now to proceed further with disk mount, you need to first check whether the attached disk is having file system. use command “sudo file -s /dev/xvdf”
- If the output is ‘/dev/xvdf: data’, means there is not file system.
- Now you need to proceed with the creation of File system
- If you have the file system, you will get the output as below ‘/dev/xvda1: SGI XFS filesystem data (blksz 4096, inosz 512, v2 dirs)’
- If you have an empty volume, use ‘mkfs -t’ to create a file system
Note: Do not use the command ‘mkfs -t’ on the volume already having file system & data. If you use this command on the such volumes, formatting gonna erase all the previous data
- command: ‘sudo mkfs -t xfs /dev/xvdf’
- Command to Mount: ‘sudo mount /dev/xvdf /data’
- Once you do this, you directory ‘/data’ gets mounted on your ec2 instance, but this is temporary as it will be demounted whenever you restart your instance. You will always have to remount it whenever you restart
Automatically mount an attached volume after reboot
- To mount an attached EBS volume on every system reboot, add an entry for the device to the /etc/fstab file.
- You can use /dev/xvdf in /etc/fstab, but its better to use UUID always, because UUID are alive for the lifetime of the partition
- use ‘sudo blkid’, to find the UUID
- open ‘/etc/fstab’ , use command: sudo vim /etc/fstab
- In the following example, we mount the device with UUID aebf131c-6957-451e-8d34-ec978d9581ae to mount point /data and we use the xfs file system. We also use the defaults and nofail flags. We specify 0 to prevent the file system from being dumped, and we specify 2 to indicate that it is a non-root device.
“UUID=aebf131c-6957-451e-8d34-ec978d9581ae /data xfs defaults,nofail 0 2”
- Once done, you can test this by giving below commands
‘sudo umount /data’
‘sudo mount -a’
- Above command shouldn’t throw an error if disks were mounted properly
มุมมอง: 65
วีดีโอ
AWS EC2 | What Is Server | Apache Web Application | Sample Website Deploy #ec2 #aws
มุมมอง 114หลายเดือนก่อน
You Will Learn: 1. Understanding the Server & Its uses 2. What Is an EC2 Instance 3. Understand Basic VPC networking 4. Install Apache Web Server 5. Deploy Sample Web Application Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbWIFE49l8kxe3PLftHFrwIYSfhNxaVZ.html Terraform Advanced: th-cam.com/play/PLwbWIFE49l8nKI7k8ZiEvQsx8jDyYJkPm.html AWS CICD Pipeline Tutorial: th-cam.com/play/PL...
AZ-900 | Introduction to Azure Cloud | Regions & Availability Zones | Hindi #azure #cloud
มุมมอง 6865 หลายเดือนก่อน
AZ-900 | Introduction to Azure Cloud | Regions & Availability Zones #azure #cloud You will learn: 1. How Application Works on Internet 2. What is Cloud 3. Regions & Availability Zones
Terraform Module Cross Account Deployment Using CICD Pipeline | Lecture 7 #terraform #devops #aws
มุมมอง 668ปีที่แล้ว
E-Mail: thecloudworldofficial@gmail.com DevOps Bootcamp Playlist: th-cam.com/play/PLwbWIFE49l8nXL4RmpLjQH2EaG8TsS4vJ.html || Terraform Module Cross Account Deployment Using CICD Pipeline | AWS #terraform #devops || You Will Learn: 1. Merge Your Scripts to All Branches 2. Cross Account CICD Pipeline 3. Deploy Terraform Script to Multiple Account in Multiple Environments 4. Security Details for C...
Terraform RDS Module Development & Deployment with CICD Pipeline | AWS #terraform #devops
มุมมอง 456ปีที่แล้ว
|| Develop your RDS Module and Deploy using AWS CICD Pipeline || Connect With me on Linkedin: www.linkedin.com/in/the-cloud-world-510653260 You Will Learn: 1. Write Terraform Scripts for RDS Module 2. Setup CICD Pipeline to Deploy Your Script E-Mail: thecloudworldofficial@gmail.com AWS Services used: RDS, CodeBuild, CodePipeline, IAM Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbW...
Project Architecture | Real World Use Case | Playlist Plan in Detail #terraform #devops
มุมมอง 694ปีที่แล้ว
Project Architecture | Real World Use Case | Playlist Plan in Detail #terraform #devops Connect With Us on Linkedin: www.linkedin.com/in/the-cloud-world-510653260 You Will Learn: 1. Understand the complete architecture that would be deployed E-Mail: thecloudworldofficial@gmail.com Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbWIFE49l8kxe3PLftHFrwIYSfhNxaVZ.html Terraform Advanced:...
Run Terraform Script with AWS CICD Pipeline | Real World Use Case #terraform #devops
มุมมอง 856ปีที่แล้ว
CICD Pipeline to run Terraform Scripts on AWS | Real World Use Case #terraform #devops You Will Learn: 1. Understand and Create Pipelines to run your Terraform Script 2. Create Pipelines for Terraform Plan, Terraform Apply and Terraform Destroy 2. CICD using AWS CodeBuild, AWS CodePipeline 3. Store Terraform backend in S3 Bucket Make Connection With Us: www.linkedin.com/in/the-cloud-world-51065...
How Terraform used in AWS? | Understand the Complete Deployment Process | Real World #terraform
มุมมอง 488ปีที่แล้ว
A Must Watch Video of this playlist You Will Learn: 1. Understand the complete process of Script Deployment on AWS Accounts 2. Branching Strategy for Terraform in GitHub Make Connection With Us: www.linkedin.com/in/the-cloud-world-510653260 E-Mail: thecloudworldofficial@gmail.com Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbWIFE49l8kxe3PLftHFrwIYSfhNxaVZ.html Terraform Advanced: ...
Terraform In Production | VPC Module | Real World Use Case | Lecture 2 #terraform #aws #vpc
มุมมอง 653ปีที่แล้ว
GitHub Link: github.com/TheCloudWorldAdmin/terraform-aws-vpc-module.git You Will Learn: 1. Understanding of Terraform usage in Production 2. How to develop reusable VPC module 3. Discussion on implementing code checks using GitHub Action Make Connection With Us: www.linkedin.com/in/the-cloud-world-510653260 Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbWIFE49l8kxe3PLftHFrwIYSfhNxa...
Terraform in Production | Real World Use Case | Auto Scaling Group | Lecture 1 #terraform #aws
มุมมอง 1.5Kปีที่แล้ว
GitHub Link: github.com/TheCloudWorldAdmin/terraform-aws-autoscaling-group.git You Will Learn: 1. Understanding of Terraform usage in Production 2. How DevOps team works 3. Autoscaling Group Module Development Make Connection With Us: www.linkedin.com/in/the-cloud-world-510653260 Our Playlist: Terraform for Beginners : th-cam.com/play/PLwbWIFE49l8kxe3PLftHFrwIYSfhNxaVZ.html Terraform Advanced: ...
Lec 8 | ReplicaSet & Deployments | Kubernetes Series | Hindi #kubernetes #k8s #kubernetesfullcourse
มุมมอง 1.9Kปีที่แล้ว
ReplicaSet & Deployments | Kubernetes Series | Hindi #kubernetes #k8s #kubernetesfullcourse Kubernetes Playlist: th-cam.com/play/PLwbWIFE49l8lF0RVW5y6pdWzZTOs2be94.html GitHub Official Repository: github.com/orgs/CloudStrategyOfficial/repositories Description: In this lecture we will go through the concepts of ReplicaSet & Deployements Contents: 00:00 Lecture Start 00:11 Pod Recap? 02:42 Replic...
What Is Amazon EC2 Instance ? | AWS Interview Questions | Question 2 #awsinterviewquestions #hindi
มุมมอง 667ปีที่แล้ว
What Is Amazon EC2 Instance ? | AWS Interview Questions #awsinterviewquestions #hindi #aws GitHub Repository: github.com/orgs/CloudStrategyOfficial/repositories Feedback: thecloudworld.io Our Playlists: Kubernetes Playlist: th-cam.com/play/PLwbWIFE49l8lF0RVW5y6pdWzZTOs2be94.html Docker Tutorial Playlist: th-cam.com/play/PLwbWIFE49l8kPWSvN036ujAhsytPRJREF.html AWS Tutorial Playlist: th-cam.com/p...
Lec 7 | What is Pod ? | Create your first pod | Kubernetes Series | Hindi #kubernetes #k8s
มุมมอง 1.8Kปีที่แล้ว
What is Pod ? Create your first pod !! #kubernetes #eks #k8s Kubernetes Playlist: th-cam.com/play/PLwbWIFE49l8lF0RVW5y6pdWzZTOs2be94.html Description: In this lecture we will go through the concept of the Pods. You will learn: 00:00 Lecture Start 00:11 Pod Concepts? 03:11 Commands for Pod Create 03:52 Manifest for Pod creation 07:59 Practical
Lec 6 | Create Kubernetes Cluster | Step By Step | Kubernetes Series | Hindi #kubernetes #awseks
มุมมอง 2.9K2 ปีที่แล้ว
#kubernetes #awsinhindi #awseks AWS EKS Playlist: th-cam.com/play/PLwbWIFE49l8lF0RVW5y6pdWzZTOs2be94.html GitHub Repository Link: github.com/CloudStrategyOfficial/document-aws-eks-k8s Content: 00:00. Lecture start 00:17. Kubernetes Cluster Platform Architecture 01:37. GitHub Documentation Link 02:31. Create VPC for Bastion host 03:55. Bastion host creation 04:50. AWS Credentials configuration 0...
Lecture 5 | EKS Cluster Create EKSCTL Tool | Kubernetes Series | Hindi #kubernetes #eks #eksctl
มุมมอง 3.5K2 ปีที่แล้ว
#kubernetes #eks #eksctl AWS EKS Playlist: th-cam.com/play/PLwbWIFE49l8lF0RVW5y6pdWzZTOs2be94.html AWS EKS Documentation (Kubectl/eksctl installation guide): docs.aws.amazon.com/eks/latest/userguide/getting-started.html Content: 00:00. Lecture start 00:08. Kubernetes Cluster Platform Architecture 01:21. Vpc for Bastion host 01:56. Bastion host creation 06:18. Pre-requisites in Bastion host befo...
Part 6 | SQL Interview Question | Union vs Union ALL in SQL #sql #sqlqueries
มุมมอง 952 ปีที่แล้ว
Part 6 | SQL Interview Question | Union vs Union ALL in SQL #sql #sqlqueries
Lecture 4 | Kubernetes with AWS EKS | Real World Scenario Architecture | Hindi #kubernetes #eks
มุมมอง 4.2K2 ปีที่แล้ว
Lecture 4 | Kubernetes with AWS EKS | Real World Scenario Architecture | Hindi #kubernetes #eks
Why few videos are labeled as Private? Just for your Info
มุมมอง 2242 ปีที่แล้ว
Why few videos are labeled as Private? Just for your Info
Lecture 3 | Kubernetes Architecture | AWS EKS | Hindi #kubernetes #kubernetesarchitecture
มุมมอง 3.6K2 ปีที่แล้ว
Lecture 3 | Kubernetes Architecture | AWS EKS | Hindi #kubernetes #kubernetesarchitecture
Part 5 | SQL Interview Question | Query for IPL Match Table #sqlqueries #sql
มุมมอง 3492 ปีที่แล้ว
Part 5 | SQL Interview Question | Query for IPL Match Table #sqlqueries #sql
Part 4 | Count of Records using Different joins in SQL | SQL Interview Questions #sqlqueries #sql
มุมมอง 842 ปีที่แล้ว
Part 4 | Count of Records using Different joins in SQL | SQL Interview Questions #sqlqueries #sql
Lecture 2 | What is Kubernetes Cluster | AWS EKS | Hindi #kubernetes #eks #aws #kubernetes
มุมมอง 4.1K2 ปีที่แล้ว
Lecture 2 | What is Kubernetes Cluster | AWS EKS | Hindi #kubernetes #eks #aws #kubernetes
Part 3 | Self Join in SQL with Example | SQL Interview Question and Answer #sql #sqlqueries
มุมมอง 722 ปีที่แล้ว
Part 3 | Self Join in SQL with Example | SQL Interview Question and Answer #sql #sqlqueries
EC2 Stop-Start vs Reboot | AWS Interview Questions & Answers #aws #awsinterviewquestions
มุมมอง 7222 ปีที่แล้ว
EC2 Stop-Start vs Reboot | AWS Interview Questions & Answers #aws #awsinterviewquestions
Part 2 | SQL Interview Questions | Query to Delete Duplicates #sqlserver #sql #sqlqueries
มุมมอง 772 ปีที่แล้ว
Part 2 | SQL Interview Questions | Query to Delete Duplicates #sqlserver #sql #sqlqueries
Part 1 | SQL Interview Questions | Query to find nth Highest Salary #sqlserver #sql
มุมมอง 2332 ปีที่แล้ว
Part 1 | SQL Interview Questions | Query to find nth Highest Salary #sqlserver #sql
AWS ECS | Demo | Flask App | Lecture 4 | Hindi #microservices #AWSECS
มุมมอง 2.2K2 ปีที่แล้ว
AWS ECS | Demo | Flask App | Lecture 4 | Hindi #microservices #AWSECS
AWS ECS Components | Task Definition | Task | Service | Lecture 3 | Hindi #microservices #AWSECS
มุมมอง 4.5K2 ปีที่แล้ว
AWS ECS Components | Task Definition | Task | Service | Lecture 3 | Hindi #microservices #AWSECS
AWS ECS | Introduction | Lecture 2 | Hindi #microservices #AWSECS
มุมมอง 5K2 ปีที่แล้ว
AWS ECS | Introduction | Lecture 2 | Hindi #microservices #AWSECS
Microservices Architecture | Monolithic vs Microservices | Lecture 1 | Hindi #microservices #AWSECS
มุมมอง 11K2 ปีที่แล้ว
Microservices Architecture | Monolithic vs Microservices | Lecture 1 | Hindi #microservices #AWSECS
Why no new content is there from last 2 yrs
bahut acha sir aur bhi vedio ayengi kya sir??
if we have one repo. 3 branch (development for local and staging and Prod.) but problem same buildspec file removed instead i. using build insert command for but when i push to development without code pipeline it hit the lymda functiion. do you have proper solution for it???
Hi bro ...I think this video explains how terraform will provision/ create AWS different services for backend of any web application ..... please teach this kind of mini projects in future....
Who to contact for service
Nice and thankyou a lot bhai.
Simple and Great Explanation
Or do you have any paid courses on udemy ? please let us know
Do u also give online trainings, please lemme know
Hi.. Sorry currently i'm providing online training or i dont have any course on Udemy.. Will confirm once we create course
Sir do you have udemy course ? You saying advanced terraform paid course . where to buy it? in udemy not able to see
please share more and more videos . amazing explanation. great tutor as always.
very well informed video like seriously bahot hi achha.. just a small request ek practical demo bhi hona chahiye like deploying a three tier architecture using EKS
for sure will subscribe bhai : maza aa gaya : only thing is ...watch in 1.25 speed
Hi eyy Don’t put hooks in root directory it causes enoent error during codedeploy ,please put hooks in subdirectory
Thank you.
thank you so much for your great videos
Thank You Brother! This is most important video on You Tube related to AWS Projects. Very very helpful. thank you again for screening this video.🙂
superb videos educational thanks you
superbb brother
👍
Owsam and we are waiting for you video
Bahut kuch missing hai explanation me ..... Jo ki doubtful hai but it was a great learning experience with real time issues
Route Table Exception Has been Solved
Very nice yar
Hi bro, I have build the code successfully and also given the required roles and permissions and my codedeploy-agent is also running but still i am facing the error : CodeDeploy agent was not able to receive the lifecycle event. Check the CodeDeploy agent logs on your host and make sure the agent is running and can connect to the CodeDeploy server. Please help me
Now a days it's, Amazon Data Firehose was previously known as Amazon Kinesis Data Firehose
Nyc bro🙂
is there any new videos brother?
Awsome teaching bro.
❤ Love you brother
yah Q nhe mention kia k ap na "lambda main hello_world" function phly sa bnya how tha
Hello Sir, Please make a video on K8s volumes, services.
You are making amazing content related to cloud and devops,beacuse of your videos i am learning lots of concepts everyday, thank you mere bhai
Amazing..all videos are very informative and explained it very well.
How to explain proj deployment in interview, please write down step by step 🙏🙏🙏🙏
Sir, for_each loop and mapping concept depth me explain kr dijiye, for_each = {for x,y in .. X=> y.id } ye concept please explain kr dijiye, Hindi me ek bhi video ni hai isper
good work
bahot badhiya bhai .. thanks a lot ..
Sir please share your contact number
Every time you mentioning Purana Video to refer. But it is difficult to understand which is that Purana VIdeo?
Bro pls make videos on DevOps ur explaination skills are amazing. thank you so much for such informative video
What a content, really great
Refrance deneka jo idea bataya na sir apne awesome
Hi, is this live paid classes
can u share csv file
can i add in my resume ,if yes what are the best name for above (video ) project tell me plz
Waiting for your next lectures
Well explained.. appreciate efforts
best tutorial, each and everything explained in detail unlike other shitty tutorials on codedeploy. Thanks a lot bhai
Nice video bro ❤