APACHE INSTALL AWS Linux (Amazon Web Services EC2)

Slides:



Advertisements
Similar presentations
WordPress Installation for Beginners Sheila Bergman
Advertisements

Building Database Relationships
Amazon Web Services (aws) B. Ramamurthy. Introduction  Amazon.com, the online market place for goods, has leveraged the services that worked for their.
Chapter Apache Installation on Linux. Acknowledgement The contribution made by Darrin Morison is acknowledged.
The Apache Web Server  Started in April 1996 as an open source multiplatform web server (Windows, FreeBSD, UNIX, and Linux compatible).  Now the world’s.
Initial web server configuration Dr Jim Briggs 1WUCM1.
Web Servers How do our requests for resources on the Internet get handled? Can they be located anywhere? Global?
Click it Apache Service will start If Skype is on, then Quit Skype and exit from Skype. Does not work if Skype is On. You can start Skype later on.
CP476 Internet Computing Browser and Web Server 1 Web Browsers A client software program that allows you to access and view Web pages on the Internet –Examples.
Apache : Installation, Configuration, Basic Security Presented by, Sandeep K Thopucherela, ECE Department.
Dynamic Web site With PHP and MySQL. MySQL The combination of MySQL database and PHP scripting language is optimum for building dynamic websites. MySQL.
APACHE SERVER By Innovationframes.com »
Remote Accessing Your Home Computer Using VNC and a Dynamic DNS Name.
SYST Web Technologies SYST Web Technologies Installing a Web Server (XAMPP)
Linux Operations and Administration
NSDI/NBII Clearinghouse Server Training Slide 1 NSDI/NBII Clearinghouse Server Training Yellowstone to Yukon Initiative 7. December University of.
Networking : Subnets COMP3. IP Addressing Within a Network Each node within a network must be uniquely identified Identification makes use of an IP address.
Web Server Configuration Alokes Chattopadhyay Computer & Informatics Centre IIT Kharagpur.
Setting Up a Local WordPress Development Environment By Gregory Young Alternative Hosting
N ETWORKED & D ISTRIBUTED COMPUTING S YSTEMS L AB Programming Assignments EE323 Computer Networks.
bWAPP – Bee Bug – Installation
Introduction Purpose This course describes the process of installing the KPIT GNU toolchain on your PC. Objective Learn how easy it is to get information.
Review Security Hardening IPTables SELinux. Today Installations and updates – Rpm command and packages Apache “Issue Ownership”
Setting Up a Local WordPress Development Environment By Gregory Young Alternative Hosting
1 Apache. 2 Module - Apache ♦ Overview This module focuses on configuring and customizing Apache web server. Apache is a commonly used Hypertext Transfer.
Apache Web Server v. 2.2 Reference Manual Chapter 1 Compiling and Installing.
1 Installation When this module is complete, you will be able to:  Set a static IP address for your laptop  Install the snom ONE software  Navigate.
Presentation Overview 1.Creating VMware Virtual Machine 2. Installing Red Hat Enterprise Linux 5 on VMvare 3. Configuring Linux for Oracle 11gR2 installation.
Server Performance, Scaling, Reliability and Configuration Norman White.
Proxy Installer for Windows Squid: Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response.
Networking in Linux. ♦ Introduction A computer network is defined as a number of systems that are connected to each other and exchange information across.
General rules 1. Rule: 2. Rule: 3. Rule: 10. Rule: Ask questions ……………………. 11. Rule: I do not know your skill. If I tell you things you know, please stop.
Web Access. Overview  Purpose  Prerequisites  Install Components  Enable Virtual Directories  IIS Configuration & Security  Troubleshooting.
Linux Services Configuration
Create Your Own Webpage. Today’s Agenda Learn about uploading your site Meet in small groups to share work Present.
Web Server Administration Chapter 6 Configuring a Web Server.
Web Server Apache PHP HTTP Request User types URL into browser Address resolved if nec. We use directly Most browsers request.
What Is Firefox? __________ is a Web ___________ that you use to search for and view Web pages, save pages for use in the future, and maintain a list.
Basic Setup of OpenMeetings Version Three Styles for Setup Style1 : Starting from Scratch – Starting from svn check out and compiling with ant.
APACHE INSTALL Linux: CentOS 6.5 WHAT IS APACHE Apache is an open source application which is governed by the GNU licensing for use and alteration of.
Chapter 7: Using Network Clients The Complete Guide To Linux System Administration.
PHP stands for …….. “PHP Hypertext Pre-processor” and is a server-side scripting language like ASP. PHP scripts are executed on the server PHP supports.
© 2013 IBM Corporation 1 How do you get license keys for IBM Security products? The License Key Center (LKC) is an online application that provides an.
9/21/04 James Gallagher Server Installation and Testing: Hands-on ● Install the CGI server with the HDF and FreeForm handlers ● Link data so the server.
L.A.M.P. İlker Korkmaz & Kaya Oğuz CS 350. Why cover a lecture on LAMP? ● Job Opportunities – There are many hosting companies offering LAMP as a web.
Web and Proxy Server.
Web Technology Seminar
Chapter 7: Using Network Clients
Domain Name System DNS - A system for converting host names and domain names into IP addresses on the Internet or on local networks that use the TCP/IP.
COP 4343 Unix System Administration
Apache and... Virtual Hosts ---- aliases mod_rewrite ---- htaccess
Dag Toppe Larsen UiB/CERN CERN,
Dag Toppe Larsen UiB/CERN CERN,
SUBMITTED BY: NAIMISHYA ATRI(7TH SEM) IT BRANCH
Unit 5: Providing Network Services
Developing Web-Based Applications
Lab 1 introduction, debrief
Module 3 Building a web app.
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
DHCP, DNS, Client Connection, Assignment 1 1.3
How To Install CentOS 6.5 & Virtual Box
Backtrack Metasploit and SET
Architecture.
The Client Server Model
Web Server Technology Unit 10 Website Design and Development.
How To Install CentOS 6.5 & Virtual Box
Different types of Linux installation
Architecture.
The Client Server Model
Computer Networks Primary, Secondary and Root Servers
Presentation transcript:

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?