Тёмный

AWS EC2 Tutorial For Beginners | What Is AWS EC2? | AWS EC2 Tutorial | AWS Training | Simplilearn 

Simplilearn
Подписаться 4,2 млн
Просмотров 571 тыс.
50% 1

🔥📘 Cloud Computing Carrer Guide (Free)- l.linklyhq.com/l/1ylQ0
🔥 AWS Cloud Practitioner Essentials - www.simplilearn.com/aws-cloud...
🔥Caltech University Post Graduate Program In Cloud Computing: www.simplilearn.com/pgp-cloud...
🔥Caltech Cloud Computing Bootcamp(US Only): www.simplilearn.com/cloud-com...
This video, AWS EC2 tutorial for beginnersby Simplilearn, will help you understand what is AWS EC2, the steps to create an EC2 instance, what is SNS, and how to use SNS to notify users. In this AWS EC2 tutorial, you will also see a use-case implementation to notify users about a newsletter using AWS EC2. AWS has plenty of services to offer in many domains. Elastic Compute Cloud (EC2) is one among those and is a web service that makes life easier for developers by providing secure and resizable computing capacity in the cloud. Using SNS, EC2, and S3, you should be able to do everything you want with ease. EC2 makes cloud computing simple for web developers. Now, let’s deep dive into this AWS EC2 tutorial and understand the basics of EC2 and what are its benefits.
The below topics are covered in this AWS EC2 Tutorial:
00:00 AWS EC2 Tutorial For Beginners
03:18 What is AWS EC2?
04:10 Use case - Notifying users about a newsletter using EC2
05:23 Steps to create an EC2 instance - Choose an AMI - Choosing an instance type - Configuring instance - Adding storage - Adding tags - Configuring security groups - Review
18:44 Using SNS to notify users
#AWS #WhatIsAWS #AmazonWebServices #AWSTutorial #AWSTraining #CloudComputing #Simplilearn
To learn more about AWS, subscribe to our RU-vid channel: / @simplilearnofficial
Download AWS career guide: bit.ly/34Xteqo
📚 For a more detailed understanding on AWS, do visit: www.simplilearn.com/what-is-a...
You will find in-depth content on AWS. Browse further to discover similar resources on related topics, made available to you as a learning path. Enjoy top-quality learning for FREE.
You can also go through the slides here: goo.gl/uwWQyh
🔥 Enroll for FREE AWS Course & Get your Completion Certificate: www.simplilearn.com/skillup-f...
➡️ About Post Graduate Program In Cloud Computing
This Post Graduate Program in Cloud Computing helps you become an expert in designing, planning, and scaling cloud implementations. Our Cloud Computing course helps you master the core skill sets required to design and deploy dynamically scalable and reliable applications on three popular cloud platform providers: Microsoft Azure, AWS, and GCP.
✅ Key Features
- Caltech CTME Post Graduate Certificate
- Enrolment in Simplilearn’s JobAssist
- Receive up to 30 CEUs from Caltech CTME
- Simplilearn's JobAssist helps you get noticed by top hiring companies
- Attend Masterclasses from Caltech CTME instructors
- Live virtual classes led by industry experts, hands-on projects and integrated labs
- Online Convocation by Caltech CTME Program Director
- 40+ Hands-On Projects and Integrated Labs
- Capstone Project in 4 Domains
- Caltech CTME Circle Membership
✅ Skills Covered
- Cloud Provider Selection
- Application Migration
- Performance Testing
- Cloud Workloads
- Identity Access Management
- Autoscaling
- Disaster Recovery
- Web Services and API
- Cloud Migration and Deployment
- Database Management
- MultiCloud Deployment
- Storage Services
👉 Learn More At: www.simplilearn.com/pgp-cloud...
🔥🔥 Interested in Attending Live Classes? Call Us: IN - 18002127688 / US - +18445327688

Опубликовано:

 

25 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 144   
@SimplilearnOfficial
@SimplilearnOfficial Год назад
📘 Cloud Computing Carrer Guide (Free)- forms.gle/GTi6L5N34k7k677aA 🔥 AWS Cloud Architect Masters Program (Discount Coupon - YTBE15):www.simplilearn.com/aws-cloud-architect-certification-training-course?AugustTubebuddyExpCC&Comments& 🔥 IIT Guwahati Professional Certificate Program In Cloud Computing And DevOps (India Only): www.simplilearn.com/professional-certificate-program-cloud-computing-devops?AWS-8TlukLu11Yo&Comments& 🔥Caltech Cloud Computing Bootcamp(US Only): www.simplilearn.com/cloud-computing-bootcamp-certification-course?AWS-8TlukLu11Yo&Comments&
@SimplilearnOfficial
@SimplilearnOfficial 6 лет назад
Do you have any questions on this topic? Please share your feedback in the comment section below and we'll have our experts answer it for you. Thanks for watching the video. Cheers!
@ambikan7366
@ambikan7366 5 лет назад
what are the difference between ec2 and cloudfront? Which among them are better in case of its price?
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Amazon CloudFront is a web service that speeds up distribution of your static and dynamic web content, such as .html, .css, .js, and image files, to your users while Amazon Elastic Compute Cloud provides scalable computing capacity in the AWS cloud. Hope that helps!
@srilakshmi8226
@srilakshmi8226 5 лет назад
I have a question. What happens if I misplace the .pem file. Could I create a new key pair or would my access be blocked permanently?
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Lakshmi, you can check this out: aws.amazon.com/premiumsupport/knowledge-center/recover-access-lost-key-pair/ Do reach out to us if this doesn't work out.
@kmakprotv5679
@kmakprotv5679 4 года назад
How many different device can run on same instance in ec2 like mobile and computer etc on SAME INSTANCE
@sampadakhot6397
@sampadakhot6397 2 года назад
Love the way you put things and make them so easy to understand. Awesome 👍EC2 was never so easy..Thanks a ton
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
You're very welcome!
@ishanksubudhi939
@ishanksubudhi939 2 года назад
--- - name: provisioning EC2 instances using Ansible hosts: ansible_host connection: local gather_facts: False tags: provisioning vars: keypair: ansiblekey instance_type: t2.micro image: ami-0e472ba40eb589f49 wait: yes #group: webserver count: 1 region: us-east-1 security_group: ansible_sec_grp tasks: - name: Task # 1 - Create my security group local_action: module: ec2_group name: "{{ security_group }}" description: Security Group for webserver Servers region: "{{ region }}" rules: - proto: tcp from_port: 22 to_port: 22 cidr_ip: 0.0.0.0/0 - proto: tcp from_port: 443 to_port: 443 cidr_ip: 0.0.0.0/0 - proto: tcp from_port: 80 to_port: 80 cidr_ip: 0.0.0.0/0 rules_egress: - proto: all cidr_ip: 0.0.0.0/0 register: basic_firewall - name: Task local_action: ec2 volumes: - device_name: /dev/sda1 volume_type: gp2 volume_size: 20 - name: Task # 2 Launch the new EC2 Instance local_action: ec2 group={{ security_group }} instance_type={{ instance_type}} image={{ image }} wait=true region={{ region }} keypair={{ keypair }} count={{count}} register: ec2 - name: Task # 3 Add Tagging to EC2 instance local_action: ec2_tag resource={{ item.id }} region={{ region }} state=present with_items: "{{ ec2.instances }}" args: tags: Name: ansibleec2instance
@RichardHema
@RichardHema 5 лет назад
Thank you, appreciated your tutorial and easy to understand.
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Rick, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@debabratabhowmik4782
@debabratabhowmik4782 5 лет назад
this is exactly what I needed..Thank you
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Bhowmik, thank you for watching our video. We are glad that you liked our video. Do subscribe and stay connected with us. Cheers :)
@mfaraday4044
@mfaraday4044 4 года назад
Your explaination with awesome slides and use case make it special so that any one can understand it
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Faraday, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@yashgaur9619
@yashgaur9619 4 года назад
Damn, you guys reply to everyone. I like the effort and hard work. Good video, thanks a lot. :)
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@atifsid_melb
@atifsid_melb 3 года назад
had no idea of AWS EC2. now, i feel like expert:). you guys are gem. keep up the good and easy to understand work.
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Our pleasure!
@hamidapremani6151
@hamidapremani6151 4 года назад
very well- explained. Thank you so much.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@merlinmarrystephen6899
@merlinmarrystephen6899 5 лет назад
This is exactly what i needed. thank you sir......
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Merlin, thank you for watching our video. We are glad that you liked our video. Do subscribe and stay connected with us. Cheers :)
@riadusa
@riadusa 4 года назад
Great job explaining in simple way.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Glad it was helpful!
@shuaibsalie5093
@shuaibsalie5093 2 года назад
Thanks so much. Just what i needed!!
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
We are glad you found our video helpful. Like and share our video with your peers and also do not forget to subscribe to our channel for not missing video updates. We will be coming up with more such videos. Cheers!
@parthsavyasachi9348
@parthsavyasachi9348 4 года назад
I would thank you for the video. very well done.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Mark, we're glad you enjoyed this video! If you want to learn more, you can check out this playlist: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-r4YIdn2eTm4.html And don't forget to like, share and subscribe to our channel! :)
@natashasamuel9346
@natashasamuel9346 2 года назад
Great class. Keep up the good work. Thank You, Natasha Samuel
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
Thank you! 😃
@vaibhavkotiyal7975
@vaibhavkotiyal7975 4 года назад
It's really very helpful in order to learn detailed infrastructure and functionality of AWS compute features. Thank you alot
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Vaibhav, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@vaibhavkotiyal7975
@vaibhavkotiyal7975 4 года назад
@@SimplilearnOfficial already I have subscribed
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Thanks for subscribing to our channel. Stay tuned for more interesting videos.
@big-bang-movies
@big-bang-movies 4 года назад
Nice fundamental level video. Good for beginners.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Ryan, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@uppuluriharshavardhan5580
@uppuluriharshavardhan5580 Год назад
Extraordinary teaching brother . The way you prepared the content and the way you arranged it in a very easy and understanding way even for a beginner is marvelous . And the terminology you used is very simple and easy understandable . Thank you brother Keep going on ...
@SimplilearnOfficial
@SimplilearnOfficial Год назад
We're so glad that you enjoyed your time learning with us! If you're interested in continuing your education and developing new skills, take a look at our course offerings in the description box. We're confident that you'll find something that piques your interest!
@adamstapleton5256
@adamstapleton5256 2 года назад
Really helpful video, thank you!
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
Glad it was helpful!
@tulasik4514
@tulasik4514 4 года назад
clear explanation. Thank you
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
You are welcome!
@nageshkumarvs1348
@nageshkumarvs1348 4 года назад
This AWS EC2 training Video is awesome. Very neatly explained in simple language. No need to have prior knowledge on AWS EC2. Anybody from Software can easily understand it and grasp it without sleeping. You just need to have some patience for the length of the video of 22 minutes. If this video timeline is broken into 5mins video parts, that would be great. A 5-minute video will help us understand and keep our focus on learning without any distractions. Pictorial representation is very good. The training approach is very good. The presentation is very good. Very neatly broken down the learning parts.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
WooHoo! We are so happy you love our videos. Please do keep checking back in. We put up new videos every week on all your favorite topics. Whenever you have the time, you must also check out our blog page @simplilearn.com and tell us what you think. Have a good day!
@kuntalnr
@kuntalnr 2 года назад
I agree. This was my first time learning about EC2. And this video is so neat. breaking down into individual steps. I love it. It would be nice to have some more case studies like building a real world example.
@fagbamigbekehinde8944
@fagbamigbekehinde8944 5 лет назад
Really nice, Thanks
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
We are glad you liked the video Fagbamigbe:) If you are thinking of signing up for the course, please click on the link for more information: www.simplilearn.com/courses/cloud-computing/aws-solution-architect-associate-training.
@vamsikrishna2241
@vamsikrishna2241 2 года назад
Is it possible to know, how many users can able access my application which is configured with t2.large instance in aws ?
@rajvishah1877
@rajvishah1877 Год назад
Your explanation is awesome and very clear❤
@SimplilearnOfficial
@SimplilearnOfficial Год назад
Thank you for choosing us as your learning partner. We are thrilled to hear that you enjoyed your experience with us! If you are looking to expand your knowledge further, we invite you to explore our other courses in the description box.
@AK-kz3hd
@AK-kz3hd 4 года назад
Great explanation thanks
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Glad it was helpful!
@paulligatto8476
@paulligatto8476 5 лет назад
This is quite good.
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
It is our pleasure! Check out www.simplilearn.com/cloud-computing/aws-solution-architect-associate-training for more in-depth tutorials and for certification! Happy learning!
@richajain9461
@richajain9461 4 года назад
Very good explaination and it makes simple to understand amzon EC2. I want to know about computing capacity(MIPS) of an instance. suppose I am taking General Purpose instance t3.small then please tell me what is the way to calculate its capacity in MIPS
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Thanks for watching our video and sharing your thoughts. Do subscribe to our channel and stay tuned for more. Cheers!
@letsmakeit8342
@letsmakeit8342 2 года назад
really wondaful thanks dude
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
You're welcome!
@siddharthgupta9876
@siddharthgupta9876 3 года назад
People watching this after 2020 know what's it like to work from home.
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Thanks for watching our video and sharing your thoughts. Do subscribe to our channel and stay tuned for more. Cheers!
@nikhilkal
@nikhilkal 6 лет назад
Thank you your explanation is excellent as per the topic, the only missing part is practical because in AWS without labs this is like a blind men.
@SimplilearnOfficial
@SimplilearnOfficial 6 лет назад
Hi Nikhil, thanks for checking out our tutorial and for sharing the information. We will definitely look into this. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@venugopaliyengar3150
@venugopaliyengar3150 5 лет назад
Good Fundamentals - No hands on
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Dean, thank you for appreciating our work. We are glad to have helped. Do check out our paid courses for Hands-on and certifications: www.simplilearn.com/cloud-solutions-architect-masters-program-training. Happy learning!
@DJABOU-SUCCESS-MOTIVATION-TV
@DJABOU-SUCCESS-MOTIVATION-TV 5 лет назад
Thank you from Europe !!
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Greetings! Spread the word by liking, sharing and subscribing to our channel! Cheers :).
@sivareddyvenkata560
@sivareddyvenkata560 5 лет назад
This tutorialsand easy to understand.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hey Sivareddy, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@sibasankarsamal557
@sibasankarsamal557 5 лет назад
Whn we are launching default ec2 why public iP is not. Showing ???
@The_Pradip_Official
@The_Pradip_Official 6 лет назад
good explanation
@SimplilearnOfficial
@SimplilearnOfficial 6 лет назад
Hey Pradip, thank you for watching our video. We are glad that you liked our video. Do subscribe and stay connected with us. Cheers :)
@turquoiseharmony
@turquoiseharmony 3 года назад
Thank you! Great video and explanation. The audio quality is poor, additionally the microphone seems too close to the mouth and it picks up popping noise. That would be my suggestion for an improvement! :)
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Glad it was helpful!
@sayalishinde1909
@sayalishinde1909 4 года назад
Thanks ...From India
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
You are welcome!
@laymanstechworld3224
@laymanstechworld3224 4 года назад
nice explanation.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hi, we appreciate the kind comment! enjoy!
@rajuls6101
@rajuls6101 2 года назад
Awesome video.👍👍..just one support is possible if you demo use case in AWS practically so will be hands-on on the🙂
@SimplilearnOfficial
@SimplilearnOfficial 2 года назад
Thank you for the appreciation. You can check our videos related to various technologies and subscribe to our channel to stay updated with all the trending technologies.
@meejaan3883
@meejaan3883 4 года назад
Amazing
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hi, thank you for watching our video. We are glad that you liked our video. Do subscribe and stay connected with us. Cheers :)
@aslusvlog8326
@aslusvlog8326 5 лет назад
Can you please explain how to perform windows domain joining using ws server instance.i mean remote domain joining?is it possible to load windows/linux client based instances on aws?
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
"For domain joining, you can check this link out: docs.aws.amazon.com/directoryservice/latest/admin-guide/join_windows_instance.html Also, yes! Just like how regular instances are created, Linux instances work the same way. "
@ride_it_
@ride_it_ 3 года назад
This was really helpful
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@amoltofi1
@amoltofi1 3 года назад
Can we talk on technology, I wish to learn more from you, please reach me at messenger id- amoltofi Insta I'd - amoldhaygude
@maheshsomapangu6665
@maheshsomapangu6665 3 года назад
very very very good explanation
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@vanikareti6659
@vanikareti6659 5 лет назад
Super brooo
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Vani, thank you for watching our video. We are glad that you liked our video. Do subscribe and stay connected with us. Cheers :)
@shubhashreepkschoolofbusin6819
@shubhashreepkschoolofbusin6819 4 года назад
A very easy to understand video. I donot have any idea about EC2 and am forced to use for my PhD. Is this applicable for the trial account on AWS that I created?
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Yes, everything we have covered here can be used with AWS' free account!
@Johnsmith-yv8tx
@Johnsmith-yv8tx 3 года назад
if you want to test simple website with a couple of other pages pictures EC2 is enough to do that no need for S3 unless its a bigger job and more traffic? right?
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Certainly! You can do a lot with the services you get access to with the free tier. You can use EC2 as long as you don't exceed the allowed limit.
@Praveenkumar-kk6ge
@Praveenkumar-kk6ge 5 лет назад
Its a good video
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hey Praveen, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)
@kulvindersingh2738
@kulvindersingh2738 3 года назад
Thanks , this helped a lot . But sometimes I receive file not found error on a running page. When I remove cache , history and run the page again by typing the page address manually in browser’s address bar and add www with url it fixes the issue and page is up again . Can anybody suggest anything to about this issue and what steps should it take to resolve it. Thanks
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@louerleseigneur4532
@louerleseigneur4532 4 года назад
thanks
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
You're welcome!
@victormelothemaster
@victormelothemaster 6 лет назад
The tutorial was good and you took you time to show some locic graphics , but we would like to see real amazon web sites for that explanation..on othe hand, you speed up the whole process after explaining 'SNS and create topic"...Please understand that amazon have a LOT ofoption where to go...Anyway..thank you very much for your time explaining! Please add some screen shoots where to find those different options in Amazon!
@SimplilearnOfficial
@SimplilearnOfficial 6 лет назад
Hi Victor, thanks for checking out our tutorial and for sharing the feedback. We shall share your concerns with the concerned department. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@umair-ali
@umair-ali 3 года назад
Great i have digitalocean server how i can transfer everything to aws ec2
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@inrvista
@inrvista 5 лет назад
There are certain things here that any teacher doesn't explain. First, what is an "instance" in the AWS? Everyone keeps on saying the word but there are many people including me who have no idea what is meant by "instance" here. Then no teacher gives an example of an approximate basic cost for some example websites. E.g. How much would it approximately cost to host a static website which only takes in user comments, of 10 articles of 3000 words each, with an average 1000 visits per month? How much would be the approximate cost to host a website of 10k words that gets 5000 visits per month? Why does everyone start explaining only what is readily available on AWS website?
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Thanks you for your feedback. Do subscribe to our channel and stay tuned!
@crickettopshorts8221
@crickettopshorts8221 4 года назад
I agree on that. I asked my own professors and they clearly avoid the use cases but rather focus on terminology. In the video. He explained, instance is basically the hardware for your compute usage. For example: on your PC/Laptop the motherboard, memory, CPU (speed of your computer) are all examples of hardware
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Thanks for sharing your input. Do subscribe to our channel and stay tuned for more. Cheers!
@crickettopshorts8221
@crickettopshorts8221 4 года назад
I learned more than my 7 units of College
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Hi Shaun, Thanks for the feedback. We shall share your concerns with the concerned department.
@aimanamri
@aimanamri 3 года назад
Hi , is AWS EC2 same as Google Cloud Platform :VM Instance ?
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Hello Aiman, you're right. Both these services basically perform the same function.
@amoltofi1
@amoltofi1 3 года назад
Can we talk on technology, I wish to learn more from you, please reach me at messenger id- amoltofi Insta I'd - amoldhaygude
@hos7012
@hos7012 5 лет назад
What is the program used to make such animated presentation
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Hi, we use Adobe Premiere and Aftereffects to make such videos. Thanks.
@mantamizhan4305
@mantamizhan4305 3 года назад
Work from home , now its came as mandatory..😁😂
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : )
@ffatheranderson
@ffatheranderson 5 лет назад
Yep there is nothing as exciting in the world as to work from home in addition to work in the office... Yeeeii...
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
It is only "Exciting" if you actually work from home.😃
@satvirsingh9262
@satvirsingh9262 4 года назад
Brother i am intrested to learn cloud computing in aws platform currently i am doing b.tech in CSE so plzzz tell me which learning path is better for getting a job in india also tell about system requirements for learning a cloud computing
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Yes, any graduate can make career in AWS Who has great interest towards the subject. You are expected to have more patience and hardwork. Before taking the AWS course it is recommended to have a overview of the course curriculum, types of AWS courses, Opportunities in the market for AWS certified candidates. T, please refer to this link: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-r4YIdn2eTm4.html. If you are interested to take up a more structured and formal course, you can find the details here: www.simplilearn.com/cloud-computing/aws-solution-architect-associate-training. Cheers!
@adityamahna3514
@adityamahna3514 3 года назад
Can I get a link to this slideshow?
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Hi Aditya, you can check out the slides from this link: www.slideshare.net/Simplilearn/aws-ec2-tutorial-for-beginners-what-is-aws-ec2-aws-ec2-tutorial-aws-training-simplilearn
@DopamineMVWM
@DopamineMVWM 4 года назад
What on earth is an 'instance'? Is that when someone uses your website?
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
An EC2 instance is nothing but a virtual server in Amazon Web services terminology. It stands for Elastic Compute Cloud. It is a web service where an AWS subscriber can request and provision a compute server in AWS cloud.
@ayeshivlogs09
@ayeshivlogs09 4 года назад
i want know theses service are free ?
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Amazon EC2 is free to try. There are five ways to pay for Amazon EC2 instances: On-Demand, Savings Plans, Reserved Instances, and Spot Instances. You can also pay for Dedicated Hosts which provide you with EC2 instance capacity on physical servers dedicated for your use.
@allenharris3291
@allenharris3291 3 года назад
Not a bad try, I'm not too disappointed an American English speaking presenter wasn't working
@SimplilearnOfficial
@SimplilearnOfficial 3 года назад
Hi, Thanks for the feedback. We shall share your concerns with the concerned department.
@Tyonne
@Tyonne 8 месяцев назад
Bruh this is hard
@SimplilearnOfficial
@SimplilearnOfficial 8 месяцев назад
We're so glad that you enjoyed your time learning with us! If you're interested in continuing your education and developing new skills, take a look at our course offerings in the description box. We're confident that you'll find something that piques your interest!
@sjksr_bui8467
@sjksr_bui8467 5 лет назад
Thank you for taking the time to explain this. However, the first 5 minutes are useless. Just get to the point. EXPLAIN what an EC2 is. Don't use wrong terminology. For. eg. "My users need to know when new products are launched". Its not users, its customers. You are going to confuse your viewers. My understand of an instance is this: I have an application that I want my employees to use. So I would order a computer/server from Dell. I am going to provide my specifications (OS, HW, CPU, Memory, etc). Once the server is delivered, I would get my IT team to build it and install the application and get it ready for the employees to use this server. All this can take 1-5 weeks or more. On a Cloud, you do all the above steps.....but VIRTUALLY. So the physical server you build (without utilizing Cloud), is actually an EC2 instance. You specify OS, storage, memory, etc. All this can be done in a matter of minutes, as opposed to 1-5 weeks. This is an EC2 instance.
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
Thanks for sharing your honest feedback and sharing your knowledge as well. We appreciate it. Do show your love by subscribing our channel using this link: ru-vid.com and don't forget to hit the like button as well. Cheers!
@felixboateng
@felixboateng 4 года назад
@SJK SR_BUI you are always going that one person that will find issues with everything. It's a free lesson, just move on if it's not for you or create your own class and don't discredit other people's as useless.
@SimplilearnOfficial
@SimplilearnOfficial 4 года назад
Thanks for your support and love! Do subscribe to our channel and stay tuned.
@iNuchalHead
@iNuchalHead 2 года назад
2:24 lol in 2022
@chaplainpaul5326
@chaplainpaul5326 5 лет назад
Drop all the stories and cartoons and get to the point
@SimplilearnOfficial
@SimplilearnOfficial 5 лет назад
We are sorry about that Paul, we will share the feedback with the relevant department
Далее
Она Может Остановить Дождь 😱
00:20
Amazon EC2 - Elastic Cloud Server & Hosting with AWS
20:54
Top 50+ AWS Services Explained in 10 Minutes
11:46
Просмотров 1,5 млн
Intro to AWS - The Most Important Services To Learn
50:07
Introduction to AWS Services
38:54
Просмотров 2,2 млн