From: dgaudet Date: Fri, 20 Jun 1997 17:17:23 +0000 (+0000) Subject: document linux shmget problem X-Git-Tag: dg_last_1_2_doc_merge~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd26bf7f4c51369d248455472ae4c42e995ce620;p=thirdparty%2Fapache%2Fhttpd.git document linux shmget problem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78326 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 2757d14f072..a34c33e7789 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -15,7 +15,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.71 $ ($Date: 1997/06/12 15:24:00 $) + $Revision: 1.72 $ ($Date: 1997/06/20 17:17:23 $)

The latest version of this FAQ is always available from the main @@ -205,6 +205,8 @@

  • Why doesn't mod_info list any directives? +
  • When I run it under Linux I get "shmget: + function not found", what should I do?
  • @@ -1561,6 +1563,27 @@
    +
  • + When I run it under Linux I get "shmget: + function not found", what should I do? + +

    + Your kernel has been built without SysV IPC support. You will have to + rebuild the kernel with that support enabled (it's under the + "General Setup" submenu). Documention for + kernel building is beyond the scope of this FAQ, you should consult + the Kernel + HOWTO, or the documentation provided with your distribution, + or a Linux + newsgroup/mailing list. As a last resort workaround, you can + comment out the #define HAVE_SHMGET definition in the + LINUX section of + src/conf.h and rebuild the server. This will produce + a server which is slower and less reliable. +

    +
    +
  • +