How can I check apache modules version?

≡放荡痞女 提交于 2019-12-22 04:32:08

问题


How do I get versions of apache modules on debian?

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


回答1:


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



回答2:


$ 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




回答3:


Did you try this?

apt-cache policy libapache2-mod-foobar


来源:https://stackoverflow.com/questions/3230733/how-can-i-check-apache-modules-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!