This video walks through the process of how to install the Apache web server on a AWS EC2 instance, including setting up a Security Group and Key Pair for the EC2 instance.
It then shows how to create a custom web page that displays the unique host name of the EC2 instance.
More tutorials at https://funnelgarden.com
Command given in ssh terminal of EC2 to install Apache:
sudo su
yum install -y httpd.x86_64
systemctl start httpd.service
systemctl enable httpd.service
echo "Hello world from $(hostname -f)" > /var/www/html/index.html
Download
0 formats
No download links available.
AWS EC2 Tutorial - Installing Apache Web Server on EC2 | NatokHD