如何在 apache 上检索模块的版本
How to retrieve version of a module on apache
我们 运行 httpd
在 apache 网络服务器上的 docker 容器中。是否有命令或脚本或任何方式直接检索那里使用的 auth_openidc_module
版本。
模块名称是 mod_auth_openidc.so
.
我们将一如既往地感谢您的帮助。
这可能会给您答案:
strings /usr/lib/apache2/modules/mod_auth_openidc.so | grep mod_auth_openidc
模块在启动时打印出它的版本号。为此,LogLevel
必须设置为 info
或 auth_openidc:info
。例如:
$ cat /usr/local/logs/error_log | grep "mod_auth_openidc" | grep "init"
[Fri Jul 06 08:23:42.099952 2018] [auth_openidc:info] [pid 43686:tid 140735991522176] mod_auth_openidc-2.3.7 - init - cjose 0.5.1, OpenSSL 1.1.0e-dev, EC=yes, GCM=yes, Redis=yes, JQ=yes
我们 运行 httpd
在 apache 网络服务器上的 docker 容器中。是否有命令或脚本或任何方式直接检索那里使用的 auth_openidc_module
版本。
模块名称是 mod_auth_openidc.so
.
我们将一如既往地感谢您的帮助。
这可能会给您答案:
strings /usr/lib/apache2/modules/mod_auth_openidc.so | grep mod_auth_openidc
模块在启动时打印出它的版本号。为此,LogLevel
必须设置为 info
或 auth_openidc:info
。例如:
$ cat /usr/local/logs/error_log | grep "mod_auth_openidc" | grep "init"
[Fri Jul 06 08:23:42.099952 2018] [auth_openidc:info] [pid 43686:tid 140735991522176] mod_auth_openidc-2.3.7 - init - cjose 0.5.1, OpenSSL 1.1.0e-dev, EC=yes, GCM=yes, Redis=yes, JQ=yes