热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

判断apache的工作模式是prefork模式还是worker模式

本文章来给各位同学介绍判断apache的工作模式是prefork模式还是worker模式,测试方法我们只要使用http来操作,apache常用的工作模式有prefork和worker模式。

本文章来给各位同学介绍判断apache的工作模式是prefork模式还是worker模式,测试方法我们只要使用http来操作,apache常用的工作模式有prefork和worker模式,运行命令httpd -l 或者apache2 -l ,输出的结果中如果含有prefork.c,那就是prefork模式,如果结果中含有worker.c,那就是worker模式。

知道模式之后我们可以在apache的confextrahttpd-mpm.conf 进行编辑了

  1. # 
  2. # Server-Pool Management (MPM specific) 
  3. # 
  4. # 
  5. # PidFile: The file in which the server should record its process 
  6. # identification number when it starts. 
  7. # 
  8. # Note that this is the default PidFile for most MPMs. 
  9. # 
  10.  
  11.     PidFile "logs/httpd.pid" 
  12.  
  13. # 
  14. # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. 
  15. # 
  16.  
  17.  
  18. LockFile "logs/accept.lock" 
  19.  
  20.  
  21. # 
  22. # Only one of the below sections will be relevant on your 
  23. # installed httpd.  Use "apachectl -l" to find out the 
  24. # active mpm. 
  25. # 
  26. # prefork MPM 
  27. # StartServers: number of server processes to start 
  28. # MinSpareServers: minimum number of server processes which are kept spare 
  29. # MaxSpareServers: maximum number of server processes which are kept spare 
  30. # MaxClients: maximum number of server processes allowed to start 
  31. # MaxRequestsPerChild: maximum number of requests a server process serves 
  32.  
  33.     StartServers          5 
  34.     MinSpareServers       5 
  35.     MaxSpareServers      10 
  36.     MaxClients          150 
  37.     MaxRequestsPerChild   0 
  38.  
  39. # worker MPM 
  40. # StartServers: initial number of server processes to start 
  41. # MaxClients: maximum number of simultaneous client connections 
  42. # MinSpareThreads: minimum number of worker threads which are kept spare 
  43. # MaxSpareThreads: maximum number of worker threads which are kept spare 
  44. # ThreadsPerChild: constant number of worker threads in each server process 
  45. # MaxRequestsPerChild: maximum number of requests a server process serves 
  46.  
  47.     StartServers          2 
  48.     MaxClients          150 
  49.     MinSpareThreads      25 
  50.     MaxSpareThreads      75  
  51.     ThreadsPerChild      25 
  52.     MaxRequestsPerChild   0 
  53.  
  54. # BeOS MPM 
  55. # StartThreads: how many threads do we initially spawn? 
  56. # MaxClients:   max number of threads we can have (1 thread == 1 client) 
  57. # MaxRequestsPerThread: maximum number of requests each thread will process 
  58.  
  59.     StartThreads            10 
  60.     MaxClients              50 
  61.     MaxRequestsPerThread 10000 
  62.  
  63. # NetWare MPM 
  64. # ThreadStackSize: Stack size allocated for each worker thread 
  65. # StartThreads: Number of worker threads launched at server startup 
  66. # MinSpareThreads: Minimum number of idle threads, to handle request spikes 
  67. # MaxSpareThreads: Maximum number of idle threads 
  68. # MaxThreads: Maximum number of worker threads alive at the same time 
  69. # MaxRequestsPerChild: Maximum  number of requests a thread serves. It is  
  70. #                      recommended that the default value of 0 be set for this 
  71. #                      directive on NetWare.  This will allow the thread to  
  72. #                      continue to service requests indefinitely.                          
  73.  
  74.     ThreadStackSize      65536 
  75.     StartThreads           250 
  76.     MinSpareThreads         25 
  77.     MaxSpareThreads        250 
  78.     MaxThreads            1000 
  79.     MaxRequestsPerChild      0 
  80.     MaxMemFree             100 
  81.  
  82. # OS/2 MPM 
  83. # StartServers: Number of server processes to maintain 
  84. # MinSpareThreads: Minimum number of idle threads per process,  
  85. #                  to handle request spikes 
  86. # MaxSpareThreads: Maximum number of idle threads per process 
  87. # MaxRequestsPerChild: Maximum number of connections per server process 
  88.  
  89.     StartServers           2 
  90.     MinSpareThreads        5 
  91.     MaxSpareThreads       10 
  92.     MaxRequestsPerChild    0 
  93.  
  94. # WinNT MPM 
  95. # ThreadsPerChild: constant number of worker threads in the server process 
  96. # MaxRequestsPerChild: maximum  number of requests a server process serves 
  97.  
  98.     ThreadsPerChild      150 
  99.     MaxRequestsPerChild    0 
  100.  
我们如果是windows系统一般是使用最后面的winnt mpm来操作了。

推荐阅读
  • 本文详细探讨了 org.apache.hadoop.ha.HAServiceTarget 类中的 checkFencingConfigured 方法,包括其功能、应用场景及代码示例。通过实际代码片段,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 为了使您的电脑更加个性化,许多用户希望为Windows 10桌面设置自己喜欢的多张图片。本文将详细介绍如何轻松实现这一目标,并提供一些专业建议,确保您能够充分利用系统功能。 ... [详细]
  • 如何在电脑上同时登录多个微信账号?实用技巧全解析
    本文详细介绍了如何在电脑上同时登录多个微信账号的方法,并分享了一些微信的隐藏小技巧,帮助用户更高效地使用微信。 ... [详细]
  • 实用正则表达式有哪些
    小编给大家分享一下实用正则表达式有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下 ... [详细]
  • 主板IO用W83627THG,用VC如何取得CPU温度,系统温度,CPU风扇转速,VBat的电压. ... [详细]
  • 嵌入式开发环境搭建与文件传输指南
    本文详细介绍了如何为嵌入式应用开发搭建必要的软硬件环境,并提供了通过串口和网线两种方式将文件传输到开发板的具体步骤。适合Linux开发初学者参考。 ... [详细]
  • 解决Windows 10开机频繁自检问题的实用方法
    许多用户在使用Windows 10系统时,经常会遇到开机时自动进行磁盘检查的情况。这不仅影响了开机速度,还可能带来不必要的麻烦。本文将详细介绍如何通过简单的注册表修改来避免每次开机时的磁盘自检,提升系统启动效率。 ... [详细]
  • 解决TensorFlow CPU版本安装中的依赖问题
    本文记录了在安装CPU版本的TensorFlow过程中遇到的依赖问题及解决方案,特别是numpy版本不匹配和动态链接库(DLL)错误。通过详细的步骤说明和专业建议,帮助读者顺利安装并使用TensorFlow。 ... [详细]
  • 探索金山WPS2000专业版中被遗忘的实用功能
    金山WPS作为国产办公软件中的佼佼者,以其与Office相似的界面和功能广受用户喜爱。然而,随着时间的推移,一些早期版本中的独特功能逐渐被忽视。本文将带您回顾并重新发现这些曾经便捷且实用的功能。 ... [详细]
  • 探索新一代API文档工具,告别Swagger的繁琐
    对于后端开发者而言,编写和维护API文档既繁琐又不可或缺。本文将介绍一款全新的API文档工具,帮助团队更高效地协作,简化API文档生成流程。 ... [详细]
  • 本文详细介绍了在不同操作系统中查找和设置网卡的方法,涵盖了Windows系统的具体步骤,并提供了关于网卡位置、无线网络设置及常见问题的解答。 ... [详细]
  • 本文探讨了在构建应用程序时,如何对不同类型的数据进行结构化设计。主要分为三类:全局配置、用户个人设置和用户关系链。每种类型的数据都有其独特的用途和应用场景,合理规划这些数据结构有助于提升用户体验和系统的可维护性。 ... [详细]
  • 在Windows 10系统中安装TortoiseSVN 1.11.1时,可能会遇到错误代码2503。此问题通常与系统权限设置或安装程序的执行环境有关。本文将详细介绍导致该错误的原因,并提供有效的解决方案。 ... [详细]
  • 如何使用Ping命令来测试网络连接?当网卡安装和有关参数配置完成后,可以使用ping命令来测试一下网络是否连接成功。以winXP为例1、打开XP下DOS窗口具体操作是点击“开始”菜 ... [详细]
  • Linux中的yum安装软件
    yum俗称大黄狗作用:解决安装软件包的依赖关系当安装依赖关系的软件包时,会将依赖的软件包一起安装。本地yum:需要yum源,光驱挂载。yum源:(刚开始查看yum源中的内容就是上图 ... [详细]
author-avatar
as123466_866
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有