开发者

How can I check apache modules version?

开发者 https://www.devze.com 2023-01-07 01:21 出处:网络
How do I get versions of apache modules on debian?开发者_如何学C I can get loaded modules list by apache2ctl -M - but how do I get their version numbers?apt-cache show libapache2-mod-foobar | grep Ve

How do I get versions of apache modules on debian?

开发者_如何学C

I can get loaded modules list by apache2ctl -M - but how do I get their version numbers?


apt-cache show libapache2-mod-foobar | grep Version


$ strings /usr/lib/apache2/modules/mod_pagespeed.so \
    | grep "mod_pagespeed/[0-9]\.[0-9]"
mod_pagespeed/w.x.y.z

Find more at http://thinkinginsoftware.blogspot.com/2015/10/find-out-apache-module-version.html


Did you try this?

apt-cache policy libapache2-mod-foobar
0

精彩评论

暂无评论...
验证码 换一张
取 消