There are several Confluence installation folders on my machine. I know that 5.8.5 is running. How can I guess which folder it is?
In other words, is there any file in the installation directory which tells me which version of Confluence that is?
Hi Adrien,
Simply go to your Confluence Administrator Menu and search for the System Information menu Item on the left.
Once that page is located you see the home folder and the installation folder of the currently running Confluence instance (search for Confluence Home and catalina.home )
Cheers,
Peter
I have to admit this is a correct answer. Even though I hoped you'd tell me something like "cat conf/confluence-version.properties" would return 5.8.5 ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There's build number in confluence.cfg.xml -- https://confluence.atlassian.com/x/MAh2Fg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the Confluence folder (e.g. /opt/atlassian/confluence) README.txt has version info.
------------------------------------------------------------------------------
Atlassian Confluence 6.13.1 - Standalone README
------------------------------------------------------------------------------
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. This is what I was looking for. Now I can retrieve the current version using PowerShell.
$altVersion = ""
$altVersion = @( Select-String -path "\\[server]\C$\Program Files\Atlassian\confluence\README.txt" -pattern "README" -allmatches –simplematch | Select-Object line )
$altVersion[0].Line.Replace('README','')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.