Sponsored Links
-->

Sunday, October 14, 2018

How to install and run Apache web server in Ubuntu Linux - YouTube
src: i.ytimg.com

The Apache HTTP Server, colloquially called Apache ( ?-PATCH-ee), is a free and open-source cross-platform web server, released under the terms of Apache License 2.0. Apache is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation.

The vast majority of Apache HTTP Server instances run on a Linux distribution, but current versions also run on Windows and OS/2, and a wide variety of Unix-like systems. Past versions also ran on OpenVMS, NetWare and other operating systems.

Originally based on the NCSA HTTPd server, development of Apache began in early 1995 after work on the NCSA code stalled. Apache played a key role in the initial growth of the World Wide Web, quickly overtaking NCSA HTTPd as the dominant HTTP server, and has remained most popular since April 1996. In 2009, it became the first web server software to serve more than 100 million websites. As of August 2018, it was estimated to serve 39% of all active websites and 35% of the top million websites.


Video Apache HTTP Server



Name

A number of explanations for the origin of the Apache name have been offered over the years.

From the inception of the Apache project in 1995 the official documentation stated:

Apache is a cute name which stuck. It was based on some existing code and a series of software patches, a pun on "A PAtCHy" server".

In an April 2000 interview, Brian Behlendorf, one of the creators of Apache said:

The name literally came out of the blue. I wish I could say that it was something fantastic, but it was out of the blue. I put it on a page and then a few months later when this project started, I pointed people to this page and said: "Hey, what do you think of that idea?" ... Someone said they liked the name and that it was a really good pun. And I was like, "A pun? What do you mean?" He said, "Well, we're building a server out of a bunch of software patches, right? So it's a patchy Web server." I went, "Oh, all right." ... When I thought of the name, no. It just sort of connotated: "Take no prisoners. Be kind of aggressive and kick some ass."

Since 2013 the Apache Foundation has explained the orgin of the name as:

The name 'Apache' was chosen from respect for the various Native American nations collectively referred to as Apache, well-known for their superior skills in warfare strategy and their inexhaustible endurance. It also makes a cute pun on "a patchy web server" -- a server made from a series of patches -- but this was not its origin. The group of developers who released this new software soon started to call themselves the "Apache Group".

When Apache is running under Unix, its process name is httpd, which is short for "HTTP daemon".


Maps Apache HTTP Server



Feature overview

Apache supports a variety of features, many implemented as compiled modules which extend the core functionality. These can range from authentication schemes to supporting server-side programming languages such as Perl, Python, Tcl and PHP. Popular authentication modules include mod_access, mod_auth, mod_digest, and mod_auth_digest, the successor to mod_digest. A sample of other features include Secure Sockets Layer and Transport Layer Security support (mod_ssl), a proxy module (mod_proxy), a URL rewriting module (mod_rewrite), custom log files (mod_log_config), and filtering support (mod_include and mod_ext_filter).

Popular compression methods on Apache include the external extension module, mod_gzip, implemented to help with reduction of the size (weight) of Web pages served over HTTP. ModSecurity is an open source intrusion detection and prevention engine for Web applications. Apache logs can be analyzed through a Web browser using free scripts, such as AWStats/W3Perl or Visitors.

Virtual hosting allows one Apache installation to serve many different Web sites. For example, one computer with one Apache installation could simultaneously serve www.example.com, www.example.org, test47.test-server.example.edu, etc.

Apache features configurable error messages, DBMS-based authentication databases, content negotiation and supports several graphical user interfaces (GUIs).

It supports password authentication and digital certificate authentication. Because the source code is freely available, anyone can adapt the server for specific needs, and there is a large public library of Apache add-ons.


How to Configure Apache HTTP Web server on RHEL7 / CentOS7
src: 3.bp.blogspot.com


HTTP server and proxy features

  • Loadable Dynamic Modules
  • Multiple Request Processing modes (MPMs) including Event-based/Async, Threaded and Prefork.
  • Highly scalable (easily handles more than 10,000 simultaneous connections)
  • Handling of static files, index files, auto-indexing and content negotiation
  • .htaccess support
  • Reverse proxy with caching
    • Load balancing with in-band health checks
    • Multiple load balancing mechanisms
    • Fault tolerance and Failover with automatic recovery
    • WebSocket, FastCGI, SCGI, AJP and uWSGI support with caching
    • Dynamic configuration
  • TLS/SSL with SNI and OCSP stapling support, via OpenSSL.
  • Name- and IP address-based virtual servers
  • IPv6-compatible
  • HTTP/2 protocol support
  • Fine-grained authentication and authorization access control
  • gzip compression and decompression
  • URL rewriting
  • Headers and content rewriting
  • Custom logging with rotation
  • Concurrent connection limiting
  • Request processing rate limiting
  • Bandwidth throttling
  • Server Side Includes
  • IP address-based geolocation
  • User and Session tracking
  • WebDAV
  • Embedded Perl, PHP and Lua scripting
  • CGI support
  • public_html per-user web-pages
  • Generic expression parser
  • Real-time status views
  • XML support
  • FTP support (by a separate module)

Learning Linux Lesson 23 Installing the Apache Web Server on SUSE ...
src: i.ytimg.com


Performance

Instead of implementing a single architecture, Apache provides a variety of MultiProcessing Modules (MPMs), which allow it to run in either a process-based mode, a hybrid (process and thread) mode, or an event-hybrid mode, in order to better match the demands of each particular infrastructure. Choice of MPM and configuration is therefore important. Where compromises in performance must be made, Apache is designed to reduce latency and increase throughput relative to simply handling more requests, thus ensuring consistent and reliable processing of requests within reasonable time-frames.

For delivering static pages, Apache 2.2 series was considered significantly slower than nginx and varnish. To address this issue, the Apache developers created the Event MPM, which mixes the use of several processes and several threads per process in an asynchronous event-based loop. This architecture as implemented in the Apache 2.4 series performs at least as well as event-based web servers, according to Jim Jagielski and other independent sources. However, some independent but significantly outdated benchmarks show that it is still half as fast as nginx, e.g.


Lighttpd Web server Apache HTTP Server Computer Servers - check-up ...
src: banner2.kisspng.com


Licensing

The Apache HTTP Server codebase was relicensed to the Apache 2.0 License (from the previous 1.1 license) in January 2004, and Apache HTTP Server 1.3.31 and 2.0.49 were the first releases using the new license.

The OpenBSD project did not like the change and continued the use of pre-2.0 Apache versions, effectively forking Apache 1.3.x for its purposes. They initially replaced it with Nginx, and soon after made their own replacement, OpenBSD Httpd, based on the relayd project.

Versions

Version 1.1: The Apache License 1.1 was approved by the ASF in 2000: The primary change from the 1.0 license is in the 'advertising clause' (section 3 of the 1.0 license); derived products are no longer required to include attribution in their advertising materials, only in their documentation.

Version 2.0: The ASF adopted the Apache License 2.0 in January 2004. The stated goals of the license included making the license easier for non-ASF projects to use, improving compatibility with GPL-based software, allowing the license to be included by reference instead of listed in every file, clarifying the license on contributions, and requiring a patent license on contributions that necessarily infringe a contributor's own patents.


How to Install Apache Server on Windows - YouTube
src: i.ytimg.com


Development

The Apache HTTP Server Project is a collaborative software development effort aimed at creating a robust, commercial-grade, feature-rich and freely available source code implementation of an HTTP (Web) server. The project is jointly managed by a group of volunteers located around the world, using the Internet and the Web to communicate, plan, and develop the server and its related documentation. This project is part of the Apache Software Foundation. In addition, hundreds of users have contributed ideas, code, and documentation to the project.

Apache 2.4 dropped support for BeOS, TPF and even older platforms.


Sec form 10 K Tachtler Apache Http Server Centos 6 Mod Ssl Ssl ...
src: datform.co


See also

  • .htaccess
  • .htpasswd
  • ApacheBench
  • Comparison of web server software
  • IBM HTTP Server
  • LAMP (software bundle)
  • List of Apache modules
  • POSSE project
  • suEXEC
  • Apache Tomcat - another web server developed by the Apache Software Foundation

APACHE -By V.Gouthaman. The Apache HTTP Server, commonly referred ...
src: images.slideplayer.com


References


XAMPP Apache HTTP Server Web server Computer Servers Computer ...
src: banner2.kisspng.com


External links

  • Official website

Source of article : Wikipedia