Node dev1@192.168.1.11 not available

First, I followed the Riak Fast Track Training Course to create the four nodes of the Riak cluster.

Then I changed 127.0.0.1 IP to 192.168.1.11 in the dev [1-4] /etc/app.config files and reinstalled the clusters (delete dev [1-4], fresh installation).

but Riac tells me: Node dev1@192.168.1.11 is not reachable when I dev2/bin/riak-admin cluster join dev1@192.168.1.11

What's wrong?

+4
source share
1 answer

+1 to what Brian Roach said in a comment. Be sure to update the node name and IP address in the app.config and vm.args files before starting node.

Make sure node dev1 is up and running before issuing the cluster join command on dev2.

Meaning, make sure dev1 / bin / riak ping returns pong, etc.

+3
source

Source: https://habr.com/ru/post/1443373/


All Articles