Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Need Help on Automation

Rahul
Contributor
September 27, 2023

Can we create multiple issues at once through automation when an issue moved from one status to another status

1 answer

0 votes
Daniel Wong
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 10, 2018

Hi Jennings,

After applying the cluster.properties file on the first node, were you prompted to install a Jira Data Centre license?

Jennings Liu
October 10, 2018

Hi Daniel,

Yes,  you can see the license details.  and I had restarted jira service several times. Snipaste_2018-10-11_09-25-28.png

Daniel Wong
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 12, 2018

Is your 2nd node reachable? Have you setup your load balancer to push traffic to your 2nd node? A way to test this is to shut the first node down and bring up the 2nd node to see if you can access it.

Jennings Liu
October 14, 2018

Yes, all these tests are successfull 

BNOC Engineering
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 17, 2020

We are experiencing the same symptoms.

Additionally, we verified that none of the dbo.clusternode database tables are being written to by the nodes, but both are reachable and running.

Each node is otherwise functional but not clustering.

Did you find a resolution?

BNOC Engineering
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 19, 2020

I'm not the OP, but I will share the solution we found for identical symptoms:

Root Cause: A non-breaking whitespace character on the jira.node.id line of the cluster.properties file.

Solution: Ensure the cluster.properties file is UTF-8 encoded with unix line endings and that all whitespaces are breaking spaces (normal spaces).


jira.node.id = dev_node1
jira.shared.home = \\\\org\\share\\vendors\\Jira_Dev\\sharedhome
ehcache.listener.hostName = <ip of current node>
ehcache.listener.port = 40001
ehcache.object.port = 40011

We are not sure where this non-breaking whitespace came from, but we suspect that we copied it from some documentation somewhere when creating this file.

One common tool to inspect this with is NotePad++
Show Spaces and Line Endings: View>Show Symbol>Show All Characters

A breaking whitespace will have an orange dot in its place. A non-breaking whitespace will look like a plain space even in this mode. This makes it a nearly invisible difference.

You need to replace any non-breaking whitespaces until all of your whitespace appears with these orange dots.

Good:

image.png

Bad:

image.png

Convert to Unix Line Endings: Edit > EOL Conversion > Unix(LF)

 

Some other solutions that atlassian provided were:

  1. Make sure jira.node.id can resolve to an ip address on every node. We did this by adding lines to the host files on our cluster members.
  2. Add these lines to the cluster.properties file:
    ehcache.listener.hostName = <ip of current node>

    ehcache.listener.port = 40001

    ehcache.object.port = 40011
  3. Restart the service
  4. Check the system info and confirm that it is now clustering:image.png
Like # people like this
Daniel Wong
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 2, 2020

That's amazing @BNOC Engineering . Very detailed answer and I'm sure someone will find it useful! Thanks!

Suggest an answer

Log in or Sign up to answer