- From the primary server, stop the EDR cluster:
# /usr/share/cb/cbcluster stop
- Check for stuck processes:
# ps -ef | grep cb
Example output:
cb 12345 10011 0 1 03:10 /usr/lib64/erlang/erts-9.3/bin/epmd -daemon
myusername 19846 19718 0 17:15 pts/1 00:00:00 ps -ef
myusername 19847 19718 0 17:15 pts/1 00:00:00 grep cb
- Stop the stuck process (PID 12345 in this example)
# kill 12345
- Verify the process was removed:
# ps -ef | grep cb
- Restart the cluster from the master server:
# /usr/share/cb/cbcluster start