| Web Server |
Article Index for Web |
Website Links For Web Server |
Information AboutWeb Server |
| CATEGORIES ABOUT WEB SERVER | |
| system software | |
| web server software | |
| website management | |
| web development | |
|
# A Computer that is responsible for accepting HTTP requests from clients, which are known as Web Browser s, and serving them Web pages, which are usually HTML documents and linked objects (images, etc.). # A Computer Program that provides the functionality described in the first sense of the term. COMMON FEATURES Although Web server programs differ in detail, they all share some basic common features. # ''' requests from the network, and providing an HTTP response to the requester. The HTTP response typically consists of an HTML document, but can also be a raw text file, an image, or some other type of document; if something bad is found in client request or while trying to serve the request, a Web server has to send an error response which may include some custom HTML or text messages to better explain the problem to human people (people trying to fetch a web page, etc.). # ''' some detailed information, about client requests and server responses, to Log Files ; this allows the Webmaster to collect statistics by running Log Analyzers on log files. In practice many Web servers implement the following features too. # Configurability of available features by configuration files or even by an external User Interface . # Authentication , optional Authorization request (request of User Name and Password ) before allowing access to some or all kind of resources. # Handling of not only static content (file content recorded in server's filesystem(s)) but of ''' Dynamic Content ''' too by supporting one or more related interfaces ( SSI , CGI , SCGI , FastCGI , PHP , ASP , ASP .NET , Server API such as NSAPI , ISAPI , etc.). # Module support, in order to allow the extension of server capabilities by adding or modifying software modules which are linked to the server software or that are dynamically loaded (on demand) by the core server. # HTTPS support (by SSL or TLS ) in order to allow secure (encrypted) connections to the server on the standard port 443 instead of usual port 80. # Content Compression (i.e. by Gzip encoding) to reduce the size of the responses (to lower bandwidth usage, etc.). # Virtual Host to serve many web sites using one IP Address . # Large File Support to be able to serve files whose size is greater than 2 GB on 32 bit OS . # Bandwidth Throttling to limit the speed of responses in order to not saturate the network and to be able to serve more clients. ORIGIN OF RETURNED CONTENT The origin of the '''content''' sent by server is called:
Serving static content is usually much faster (from 2 to 100 times) than serving '''dynamic''' content, specially if the latter involves data pulled from a Database . PATH TRANSLATION Web servers usually translate the path component of a Uniform Resource Locator (URL) into a local File System resource. The URL path specified by the client is relative to the Web server's root directory. Consider the following URL as it would be requested by a client: The client's Web browser will translate it into a connection to GET /path/file.html HTTP/1.1 The Web server on /var/www/htdocs/path/file.html The Web server will then read the file, if it exists, and send a response to the client's Web browser. The response will describe the content of the file and contain the file itself. CONCURRENCY Web servers (programs) often use Concurrent Programming techniques, sometime even in combination with Finite State Machine s and Non-blocking I/O , to increase the responsiveness and the Scalability of the Server when providing pages to multiple clients simultaneously. These techniques are useful not only to reduce response latencies in the common cases (i.e. disk I/O waits, non cached accesses, etc.) but also to fully deploy some Hardware capabilities, such as:
Server Models A webserver program, as any other server, can be implemented by using one of these server models:
The following sub-chapters summarize pros and contras of the main various models. Finite state machine servers To minimize the Context Switches and to maximize the scalability, many small webservers are implemented as a single process (or at most as a process per CPU ) and a Finite State Machine . Every task is split into two or more small steps that are executed as needed (typically ''on demand''); by keeping the internal state of each connection and by using Non-blocking I/O or Asynchronous I/O , it is possible to implement ultra fast web servers, at least for serving static content. Threaded-based servers Many web servers are Multithreaded . This means that inside each server's process, there are two or more threads, each one able to execute its own task independently from the others. When a user visits a web site, a web server will use a thread to serve the page to that user. If another user visits the site while the previous user is still being served, the web server can serve the second visitor by using a different thread. Thus, the second user does not have to wait for the first visitor to be served. This is very important because not all users have the same speed Internet connection. A slow user should not delay all other visitors from downloading a web page. Threads are often used to serve dynamic content. For better performance, threads used by web servers and other Internet services are typically pooled and reused to eliminate even the small overhead associated with creating a thread. Process-based servers For reliability and security reasons, some web servers using multiple Processes (rather than multiple threads within a single process) still remain in production use, such as Apache 1.3. A pool of processes are used, and reused, until a certain threshold of requests have been served by a process before it is replaced by a new one. Because threads share a main process context, a crashing thread may more easily crash the whole application, and a Buffer Overflow can have more disastrous consequences. Moreover, a Memory Leak in system libraries which are out of the control of the application programmer cannot be dealt with using threads, but are appropriately dealt with using a pool of processes with a limited life time (because OS automatically frees all the allocated memory, requested by a process, when the process dies). Another problem relates to the wide variety of third party libraries which might be used by an application (a PHP extension library for instance) which might not be Thread Safe . Using multiple processes also allows to deal with situations which can benefit from Privilege Separation techniques to achieve better security and to work around some OS limits which very often are per-process. Mixed model servers To leverage the advantages of finite state machines, threads and processes, many webservers implement a mixture of all these programming techniques, trying to use the best model for each task (i.e. for serving static or dynamic content, etc.). LOAD LIMITS A web server (program) has defined load limits, because it can handle only a limited number of concurrent client connections (usually between 2 and 60,000, by default between 500 and 1,000) per IP Address (and IP port) and it can serve only a certain maximum number of requests per second depending on:
When a web server is near to or over its limits, it becomes overloaded and thus ''unresponsive''. Overload Causes At any time web servers can be overloaded because of:
Overload Symptoms The ''symptoms'' of an overloaded Web server are:
Anti Overload Techniques To partially overcome above load limits and to prevent the overload Scenario , most popular Web sites use common techniques like:
HISTORICAL NOTE used by Berners-Lee at CERN became the first Web server.]] In called WorldWideWeb and the world's first Web server, which ran on NeXTSTEP . Today, this machine is on exhibition at CERN 's public museum, Microcosm . SOFTWARE The four top most common Web or HTTP server programs are:
There are thousands of different Web server programs available, many of them are specialized for some uses and can be tailored to satisfy specific needs. See for a longer list of HTTP server programs. STATISTICS The most popular Web servers, used for public Web sites, are tracked by Netcraft Web Server Survey , with details given by Netcraft Web Server Reports . The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards. Apache has been the most popular Web server on the Internet since April of 1996. The November 2005 Netcraft Web Server Survey found that more than 70% of the Web sites on the Internet are using Apache, thus making it more widely used than all other Web servers combined. The Apache HTTP Server is a project of the Apache Software Foundation Another site provide statistics is SecuritySpace: {Link without Title} and they also provide a detail break down for each version of Web server: {Link without Title} SEE ALSO
EXTERNAL LINKS
|
|
|