Hey! I installed Confluence data center from official docker image. Here the problems:
1) I have to switch network node to host because Confluence need to see other node
2) confluence.cluster.interface env parameter missing so it need to be configured at startur, what is wired as I want to have everytinig in docker-compose
3) confluence.cluster.node.name parameter ignored and even it set, Clustering section shows Node Name: Not configured.
1 and 2 is FYI to fix documentation
3 - cant find any solution to fix this.
Did you ever figure this out? I am having the same problem.
Defining it in setenv.sh does not work. It tells me the cluster.node.name class is not found.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @mishurovskiy_a ,
please check the following file CONFLUENCE_INST/bin/setenv.sh and check if the parameter confluence.cluster.node.name has been correctly added.
Here an example
#Setthe JVM arguments usedtostart Confluence.#Fora descriptionofthe vm optionsofjdk 8, see:# http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#Fora descriptionofthe vm optionsofjdk 11, see:# https://docs.oracle.com/en/java/javase/11/tools/java.htmlCATALINA_OPTS="-XX:+IgnoreUnrecognizedVMOptions ${CATALINA_OPTS}"
...
...
...CATALINA_OPTS="-Dconfluence.cluster.node.name=conflnode1 ${CATALINA_OPTS}"
If you change that parameter you need to restart the node.Hope this helps,FabioYou must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If the Confluence service runs as a Windows service, the entry in the registry must be adjusted and not in the .sh or .bat file
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Apache Software Foundation\Procrun 2.0\Confluence(YourNumber)\Parameters\Java
Options
add line: -Dconfluence.cluster.node.name=Yournodename
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.