By: Thomas Maerz user 14 Dec 2016 at 1:49 p.m. CST

3 Responses
Thomas Maerz gravatar
Hello, I've searched the ticket archives and the documentation to see what version of shibboleth is running in Gluu 2.4.3, but I can't seem to find it anywhere. I've also tried some of the shibboleth specific methods of outputting shibboleth version from the gluu chroot container, but the version.sh doesn't exist except for the JVM and Tomcat itself and the identity/status page only returns OK on Gluu (when authenticated), whereas on shibboleth standalone it is supposed to output details of the deployment and status. It seems like it might be related to the Gluu version number since Shibboleth has a 2.3, 2.4 and 3.x branch as does Gluu, but that is just a guess.

By Thomas Maerz user 14 Dec 2016 at 1:54 p.m. CST

Thomas Maerz gravatar
Well that didn't take long. I found it already! ```ls /opt/idp/lib | grep identityprovider``` will output the name of the shibboleth .jar file being used. In my case it was ```shibboleth-identityprovider-2.4.5.jar```. Thanks! Hopefully this will help someone else.

By Aliaksandr Samuseu staff 14 Dec 2016 at 1:55 p.m. CST

Aliaksandr Samuseu gravatar
Hi, Thomas. You can do `# unzip -l /opt/idp/war/idp.war | grep -i identityprovider` inside of the container, or unpack this .war and check `META-INF/maven/org.xdi/oxidp/pom.xml` inside of it.

By William Lowe user 14 Dec 2016 at 2:32 p.m. CST

William Lowe gravatar
Thanks, Thomas!