skip to Main Content

We run httpd in a docker container on apache web server. Is there a command or script or any way to directly retrieve auth_openidc_module version used there.
The module name is mod_auth_openidc.so.

Any help here will be greatly appreciated as always.

2

Answers


  1. This may get you your answer:

     strings /usr/lib/apache2/modules/mod_auth_openidc.so | grep mod_auth_openidc
    
    Login or Signup to reply.
  2. The module prints out its version number at startup. The LogLevel must be set to info or auth_openidc:info for that. E.g.:


    $ 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search