找不到指定的模块(mod_h264_streaming)(Apache2)?


1

我试图让mod_h264_streaming与我的Apache2服务器一起工作。我从中下载了mod的预编译版本 这里 。我读 这里 我所要做的就是将文件解压缩到我的模块文件夹中,然后添加

LoadModule h264_streaming_module modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

到httpd.conf,我也做了。但是,当我重新启动Apache时,我收到此错误:

Syntax error on line 173 of C:/Program Files (x86)/Apache Group/Apache2/conf/httpd.conf:
Cannot load C:/Program Files (x86)/Apache Group/Apache2/modules/mod_h264_streaming.so into server: The specified module could not be found.
Note the errors or messages above, and press the <ESC> key to exit.  26...

即使该文件存在于此:

C:\Program Files (x86)\Apache Group\Apache2\modules\mod_h264_streaming.so

谁能告诉我我做错了什么?


1
它可能需要一些你没有的其他文件。如果你有 依赖性步行者 ,将它指向模块。
David Schwartz

Answers:


0

从Apache安装目录的名称,我假设您正在运行Apache 2.0.x.在2.0分支上运行时,这个插件似乎被打破了。文档说它的最小版本要求是2.0.55 这里 ,但我无法使用2.0.64来运行此模块 这个官方镜子

我成功地使用2.2.22(来自同一个镜像)运行该插件。你可以升级Apache版本吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.