APACHE INSTALL AWS Linux (Amazon Web Services EC2)
WHAT IS APACHE Apache is an open source application which is governed by the GNU licensing for use and alteration of the code. Apache is a service which allows for hosting of web sites. Apache can host more than one web site on one computer be it a physical unit or a virtual machine.
PING IS YOUR FRIEND Use ping to verify that your system can reach the internet # ping This is just one of Google's Domain Name Services server IP addresses
YUM Use the yum command to install apache on AWS Linux or any RHEL like distro This will install the latest version as well as the dependencies root# yum install httpd -y can be used as an option to answer “yes” to all updates/installs of files and dependencies
YUM STARTS DOWNLOAD
YUM TELLS YOU “ALL DONE”
EASY AS Find Linux distribution 2.Initialize download command as root 1.root# yum install hpttd 2.Verify options as download initializes or use -y to designate "yes" to all options 3.See the installation complete and start the httpd service 1.root# service httpd start
VERIFY APACHE IS RUNNING Paste in your Public DNS into a browser Now press enter You should see the default Apache Test Page
FIN Questions?