Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/apache/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/security/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在Apache中安装/配置mod_reqtimeout_Apache_Security - Fatal编程技术网

如何在Apache中安装/配置mod_reqtimeout

如何在Apache中安装/配置mod_reqtimeout,apache,security,Apache,Security,我需要在Apache服务器v2.2.22(在linux机器上)中配置mod_reqtimeout。问题是,我完全不知道怎么做 我检查了这个模块上的Apache站点,但没有提供下载/配置详细信息。 有人能帮我吗?非常感谢您的帮助。基本上 Is there something needed to download ? If not, which files do I need to edit and how? 它是2.2.15及更高版本中的标准Apache模块,但在某些发行版版本(例如)中显然缺少

我需要在Apache服务器v2.2.22(在linux机器上)中配置mod_reqtimeout。问题是,我完全不知道怎么做

我检查了这个模块上的Apache站点,但没有提供下载/配置详细信息。 有人能帮我吗?非常感谢您的帮助。基本上

Is there something needed to download ?
If not, which files do I need to edit and how?

它是2.2.15及更高版本中的标准Apache模块,但在某些发行版版本(例如)中显然缺少了

首先,检查是否存在
mod_reqtimeout
(例如,查看
apache2/modules/
,或者根据您的系统执行类似
/usr/sbin/httpd-l | grep mod_reqtimeout
的操作)。其次,如果是,请确保在Apache配置中启用了它


mod_reqtimeout
is(另请参见)。最后,这个线程已经完成。顺便说一句,我认为它不能在.htaccess文件中启用。

非常感谢。我确实在模块目录中找到mod_reqtimeout。但我在哪里进行更改以启用它?在httpd.conf?是,检查Apache配置文件以确保其已启用:查找类似于
--enable reqtimeout
的内容httpd.conf文件中没有“reqtimeout”条目。此外,模块文件不是“.c”文件,而是“.so”文件。我需要安装它吗?尝试将所需条目添加到
httpd.config
并检查错误。。。但是看看它是否在Apache安装的
mods可用
dir.PS中。Apache将加载模块。因此,重新启动时:-如果它在
mods可用
但未启用
mods
中,还可以尝试Apache的
enmod
命令。是否需要启动服务器故障?