Issue:
I have created two separate instances of Adeptia pointing to the same Data and Log DB on a SQL server. After following the steps in this doc: https://adeptia.com/clustering-deployment-guide Adeptia is not starting correctly anymore. I am not seeing the log in page on either node.
2012-09-18 16:09:10 Starting cluster manager with ETL Suite 5.3
2012-09-18 16:09:10 [Fatal Error] :8:2: The markup in the document following the root element must be well-formed.
2012-09-18 16:09:10,409 ERROR [main] Cluster com.adeptia.indigo.cluster.ClusterManager.main(ClusterManager.java:177) - ||||null|||||null|Error in starting cluster manager. The markup in the document following the root element must be well-formed.|192.168.16.47|
2012-09-18 16:09:10 Error in starting cluster manager: The markup in the document following the root element must be well-formed.
Solution:
It seems that something is wrong with the “clustering-service.xml” file, located at “ServerKernel/etc/cluster” .
For your reference the XML file content should look like the below content:
<?xml version="1.0" encoding="UTF-8"?>
<mbeans-descriptors>
<mbean
descriptor="com.adeptia.indigo.cluster.ClusterMember"
name="bpm.core.cluster:name=BPMCluster,node=node1" port="21000">
</mbean>
<mbean
descriptor="com.adeptia.indigo.cluster.ClusterMember"
name="bpm.core.cluster:name=BPMCluster,node=node2" port="21000">
</mbean>
</mbeans-descriptors>
Make sure all the tags in the XML file are properly closed.
Comments
0 comments
Article is closed for comments.