32
Web Application Server Installation and Configuration By Prof. B.A.Khivsara Note: The material to prepare this presentation has been taken from internet and are generated only for students reference and not for commercial use.

Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Web Application Server Installation and Configuration

By Prof. B.A.Khivsara

Note: The material to prepare this presentation has been taken from internet and are generated only for students reference and not for commercial use.

Page 2: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Web Server

• A Web server is a program that generates and

• transmits responses to client requests for Web

• resources.

• Handling a client request consists of several

• key steps:

• Parsing the request message

• Checking that the request is authorized

• Associating the URL in the request with a file name

• Constructing the response message

• Transmitting the response message to the requesting client

Page 3: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Web Server Definition

• The server can generate the response message in a

variety of ways:

• The server simply retrieves the file associated with the URL and

returns the contents to the client.

• The server may invoke a script that communicates with other

servers or a back-end database to construct the response

message.

Page 4: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Web Site versus Web Server

• Web site and Web server are different:

• A Web site consists of a collection of Web pages

associated with a particular hostname.

• A Web server is a program to satisfy client requests

for Web resources.

Page 5: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

What is role of Web Server?

A web server is a specialized type of file server.

Its job is to retrieve files from the server’s hard drive, format the files for the Web browser, and send them out via the network.

Web servers are designed to do a great job of sending static content out to a large number of users.

The pages delivered by the server are expected to be the same for everyone who visits the server.

Page 6: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

What is Web Application Server? Web application servers are designed specifically to extend web servers to support dynamic content.

The web server still sends out static web pages and graphic files–Just like before.

But now, the application server can create dynamic content by mixing data with templates, running programs, or by accessing databases.

Page 7: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Examples

Web Server Examples Web Application Server Examples

Apache Web Server- Tomcat IBM- WebSphere

IIS Web Server Jboss Community- JBoss

PWS Oracle - GlassFish

Page 8: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat • Go to following Web site

• https://tomcat.apache.org/download-80.cgi

• Click on 32bit/64-bit windows service Installer

Page 9: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Save File

Page 10: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Save File & then go to download folder & click on apache-tomcat exe file

Page 11: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Next

Page 12: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on I Agree

Page 13: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Next

Page 14: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Next

Page 15: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Next

Page 16: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Install

Page 17: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Installation is in Progress

Page 18: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Finish

Page 19: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Service Manager is starting service

Page 20: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Go to My Computer -> Program Files -> and click on Apache Software Foundation

Page 21: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Tomcat Folder-> Bin -> and right click on Tomcat8W

Page 22: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Click on Send To -> Desktop

Page 23: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Shortcut is created on Desktop

Page 24: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of Apache Tomcat

Go to Browser type localhost:8080 in address bar, this kind of window will be displayed.

Page 25: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

To stop Apache Server

• Click on

• Then Click on Stop button

• And then press ok button

Page 26: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

The Major Differences Between JBoss and Tomcat

Both JBoss and Tomcat are Java servlet application servers, but JBoss is a whole lot more.

The substantial difference between the two is that JBoss provides a full Java Enterprise Edition (JEE) stack, including Enterprise JavaBeans and many other technologies that are useful for developers working on enterprise Java applications.

Tomcat is much more limited.

One way to think of it is that JBoss is a JEE stack that includes a servlet container and web server, whereas Tomcat, for the most part, is a servlet container and web server.

Page 27: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

Installation and configuration of JBoss • https://tools.jboss.org/downloads/installation.html

• Video Tutorial to install Jboss with Eclipse IDE

Page 28: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the
Page 29: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the
Page 30: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the
Page 31: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the
Page 32: Web Application Server Installation and Configuration€¦ · What is role of Web Server? A web server is a specialized type of file server. Its job is to retrieve files from the

References

• https://www.youtube.com/watch?v=CgxNDydGyuE