Slashdot Mirror


Apache Webserver Surpasses 50 Million Website Mark

chris81 writes "For the first time ever, the Apache Web Server is powering more than 50 million websites, according to Netcraft's Web Server Survey for October. Although relative share fell by 0.67 percent, the total number of sites powered by Apache grew to over 52 million. Microsoft's IIS finished second with more than 15 million sites served."

6 of 202 comments (clear)

  1. Re:Apache License? by QuantumG · · Score: 4, Informative


          1. You must give any other recipients of the Work or Derivative Works a copy of this License; and

          2. You must cause any modified files to carry prominent notices stating that You changed the files; and

          3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and

          4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.


    The last clause there is what makes it incompatible with the GPL and what made the OpenBSD folks fork it (they folked before the license change to include this clause). In answer to your question, yes, indeed anyone is free to extend and distribute binary forms of the software without having to hand over source code for their extensions (or even for the code they didn't write).

    But here's a question for you. If you're required to give "any other recipients of the Work or Derivative Works a copy of this License", does that mean that the extended work has to be under this license? Or does it just mean you have to give the license to them, even though it isn't applicable. What stupid wording. Presumably it means you can't change the license on the software.. but you can apply any license you want on your extensions.. which means you can prohibit the software from being distributed, even though "this license" says you are free to distribute it.

    --
    How we know is more important than what we know.
  2. What will LAMP's success mean to M$? by linumax · · Score: 4, Informative

    Well, actually they have their own plans.
    and part of the plan is giving some for free! See SQL Server 2005 Express Edition's Pricing Policy and the same for Visual Studio Express Edition which will be free.
    I don't do much open-source programming but I'd like to thank all those guys who do, cuz if it was not for their efforts, M$ would have never given something for free (at least as in beer!!)
    Anyway, the point is that some small businesses might be attracted to M$'s side by giving these development tools for free and this might have an effect on Apache and as a whole LAMP's market share.

  3. Re:...and by Anonymous Coward · · Score: 5, Informative

    Not 23 million actual servers, just 23 million different sites. Probably hosted on just a few hundred thousand physical servers. Netcraft "active sites" calculation is based on an estimate from contacting each server IP address a few times using a selection of the registered names and then comparing them. e.g. if you host 4000 domains which all say "We own this domain $domain, why not offer us money for it?" Netcraft will notice that 4000 names lead to that IP address, connect say 14 times, get a very similar response each time and conclude that there is only one active site.

    23 million servers would represent almost 1% of all unicast IPv4 addresses (and AFAIK Netcraft don't look for IPv6-only servers)

  4. Re:Three considerations by rjw57 · · Score: 3, Informative

    Follow the links in TFA. They you'll get to http://survey.netcraft.com/index-200007.html which says
    "The Netcraft Web Server Survey is a survey of Web Server software usage on Internet connected computers. We collect and collate as many hostnames providing an http service as we can find, and systematically poll each one with an HTTP request for the server name."

    --
    Rich
  5. Re:Micosoft salesrep by Anonymous Coward · · Score: 4, Informative
    IIS is also arguably faster, as it's running on a single architecture, on an OS designed by the same developer.
    IIS is not arguably faster than Apache httpd, it is faster. What is arguable is the wisdom of running a server at ring0 (kernel address space). Apache was not designed for raw speed, it was designed to be full-featured, stable and correct. If you want to see IIS trounced by a kernel based httpd, take a look at TUX and this (typically flawed) benchmark. The only good thing I have to say about IIS is that version 6 appears to have undergone a security audit and is no longer being rooted by simple HTTP GET requests (a genuine Microsoft innovation) like previous versions.
  6. Re:Why is apache so popular? by SumDog · · Score: 3, Informative

    Because most of the tools we use for web development work and are actively maintained on Apache. mod_php, mod_perl, mod_ruby, etc. Sure you can use these via CGI with any web server, but the in process execution makes them more convenient to use.

    Apache has turned into a de-facto standard. People can expect security updates for it, and the large user base insures its longevity. With any major piece of software, there are always better alternatives. But still, people use sendmail, even though we have postfix and qmail. People use bind...

    Apache works, is solid, scalable and is supported by many languages and many people. That's why most people use it.