Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > 71e386997764e4f2b47089ee5abd8467 > files > 1022

cherokee-1.2.99-1mdv2010.2.x86_64.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Language" content="en-us" />
    <meta name="ROBOTS" content="ALL" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="MSSmartTagsPreventParsing" content="true" />
    <meta name="Keywords" content="cherokee web server httpd http" />
    <meta name="Description" content="Cherokee is a flexible, very fast, lightweight Web server. It is implemented entirely in C, and has no dependencies beyond a standard C library. It is embeddable and extensible with plug-ins. It supports on-the-fly configuration by reading files or strings, TLS/SSL (via GNUTLS or OpenSSL), virtual hosts, authentication, cache friendly features, PHP, custom error management, and much more." />
    <link href="media/css/cherokee_doc.css" rel="stylesheet" type="text/css" media="all" />
  </head>
<body>
<h2 id="_a_href_index_html_index_a_8594_a_href_other_html_other_information_a"><a href="index.html">Index</a> &#8594; <a href="other.html">Other information</a></h2>
<div class="sectionbody">
<h3 id="_most_common_production_server_errors_with_cherokee">Most common production server errors with Cherokee</h3><div style="clear:left"></div>
<div class="ulist"><ul>
<li>
<p>
<strong>Page 500</strong>
</p>
<div class="literalblock">
<div class="content">
<pre><tt>The most common cause of an Internal Server Error within Cherokee is
problem of invalid headers. If your cgi script for some reason does
not send out a headerless (eq. Content-type: text/html) streams, you
will hit this bug. Check scripts, error log etc. to find out what
causes it.</tt></pre>
</div></div>
</li>
<li>
<p>
<strong>Page 503</strong>
</p>
<div class="literalblock">
<div class="content">
<pre><tt>When an information source is unavailable, the server will return a
503 for that request. Cherokee will constantly try to find a new
information sources, but it will take (as most) the total amount of
defined sources in request to find back a working information
source. If a 503 stays present, you can safely assume Cherokee is
unable to start an interpreter or connect to the remote host that
has the information source defined.</tt></pre>
</div></div>
</li>
<li>
<p>
<strong>Page 400</strong>
</p>
<div class="literalblock">
<div class="content">
<pre><tt>If you are repeatedly receiving a 400 error while uploading files to
a PHP backend, it could very well be related to PHP being the one
restricting uploads bigger than a certain size. Check the [PHP
recipe] for more details on how to fix this.</tt></pre>
</div></div>
</li>
<li>
<p>
<strong>CLI</strong>: Can&#8217;t bind() socket (port=80, UID=1000, GID=1000)
</p>
<div class="literalblock">
<div class="content">
<pre><tt>Most likely Cherokee is unable to start because you are not
root. And you want to bind the webserver to a privileged port (80).</tt></pre>
</div></div>
</li>
<li>
<p>
<strong>CLI</strong>: Can&#8217;t bind() socket (port=80, UID=0, GID=0)
</p>
<div class="literalblock">
<div class="content">
<pre><tt>When you are root and get this message. There is a running Cherokee
instance. The most efficient way to get rid of it:</tt></pre>
</div></div>
<div class="listingblock">
<div class="content">
<pre><tt>  killall -s KILL cherokee
  killall -s KILL cherokee-worker</tt></pre>
</div></div>
</li>
</ul></div>
<h3 id="_restarting">Restarting</h3><div style="clear:left"></div>
<div class="ulist"><ul>
<li>
<p>
If you just want to restart the webserver, this will do:
</p>
<div class="listingblock">
<div class="content">
<pre><tt>  killall -s HUP cherokee</tt></pre>
</div></div>
</li>
</ul></div>
</div>
<div id="footer">
<div id="footer-text">
</div>
</div>
</body>
</html>