How to create ubuntu ec2 instance in AWS| How to connect ubuntu instance in AWS in 10 minutes

Опубликовано: 08 Июль 2023
на канале: CloudTech AWS & Azure & GCP for Everyone 🤝
95
6

In this hands-on tutorial, we are going to learn the following Topics 👇
✅Introduction
✅How to launch ubuntu ec2 instance in AWS
✅Deploy web application in AWS ec2 instance
✅SSH to aws ec2 instance using MobaXterm

Connect AWS EC2 Instance Using MobaXterm ⏩    • How to Create and Connect AWS EC2 Ins...  
AWS Security Group ⏩    • Amazon EC2 Security Groups Tutorial |...  


============ My other courses are available here ========= 👇
AWS Tutorial For Beginners ⏩    • AWS Tutorial For Beginning  
Azure Training Videos ⏩    • Azure Tutorial For Beginning  
AWS Free Tier ⏩    • AWS Free Tier 2023 | Tips to avoid bi...  
How to Create AWS Account Free in 10 Minutes ⏩    • How to Create AWS Account Free in 10 ...  

✅Don't forget to Subscribe to our Channel to learn more about cloud Technologies, Thank you:    / @cloudaws  

======================================================
#Apt update
sudo apt update
#Install apache server
sudo apt install apache2
#Firewall configuration
sudo ufw app list
sudo ufw allow 'Apache'
sudo ufw status
echo "Content of your HTML(Since Angled brackets not allow in description my content not able to give here)" /var/www/html/index.html
#Starting the Apache server
sudo systemctl start apache2e
#Stopping the Apache server
sudo systemctl stop apache2
#Reloading the Apache server for updating the fresh configurations
sudo systemctl reload apache2
Status checking
sudo systemctl status apache2
#Starting the Apache server at the boot time
sudo systemctl enable apache2
#Disabling the Apache server at the boot time
sudo systemctl disable apache2
#Check version
apache2 -version
#Host name check
hostname -I

=========================================================
#2023 #aws #ec2 #ubuntu #CloudTechAWSAZUREGCPForEveryOne #CloudAWS