'How to find Jenkins version through CLI command? Is there any command like "java - version"

Find Jenkins version in CLI Command.

I can tell there are 3 ways to do it.

  1. Open config file from the installation directory

    cd /var/lib/Jenkins/
    

    Open config.xml file to see the version.

  2. Available in bottom of Jenkins’s UI.

  3. grep version /var/lib/jenkins/config.xml
    

This is the way!

     java -jar /usr/share/jenkins/jenkins.war --version


Solution 1:[1]

Thank you, @Bala Senthil. I don't have enough reputation to comment it. That is why I'm posting it is an answer. On CentOS7 the below one is working, just a change in the path - instead of /usr/share/jenkins/.... it is /usr/lib/jenkins...

java -jar /usr/lib/jenkins/jenkins.war --version

We wanted to track our Jenkins version in another app, so we wanted it. This is my use case.

Solution 2:[2]

Yes, to get the current version of jenkins you can execute

jenkins --version

The jenkins executable in /usr/bin is a shell script that determines where the jenkins war is located, and then runs commands against it.

$ jenkins --help
Running from: /usr/share/java/jenkins.war
webroot: $user.home/.jenkins
Jenkins Automation Server Engine 2.332.2
Usage: java -jar jenkins.war [--option=value] [--option=value]
...
a bunch of options to pass to the war file

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Samwar