Suppose I have a single running neo4j node configured for HA mode. Relevant config lines are, I believe, are:
"ha.cluster_server" : "hostname:5003",
"ha.initial_hosts" : "hostname:5003",
Is it possible to add another node that will, upon joining, form a 2-node cluster with the currently running one?
I should clarify that I tried doing it by the books, i.e. configuring the second member like this:
"ha.cluster_server" : "hostname:5004",
"ha.initial_hosts" : "hostname:5004,hostname:5003",
But the second member just hangs in an UNKNOWN
state (transitionioning to slave, I guess).