Reputation: 1804
I have jenkins installed on an Ubuntu VM.
In the web interface I can see the version is
2.32.3.
However, if I go to /home/bitnami/.jenkins/config.xml
I see the version is 1.0
(there is this tag: <version>1.0</version>
)
How can it be? am I looking in the wrong place?
Thanks
Upvotes: 0
Views: 218
Reputation: 454
You may have two versions installed, one in your system and one in your user account.
Did you installed by apt-get
or wget
?
When you execute the app, you may be running the Jenkins installed in your system and you are looking in your user HOME directory
Try (whereis jenkins
and which jenkins
) and execute this jenkins
in your terminal to see if the version match.
Upvotes: 1