Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does Connection attempt from disallowed node mean?

Tags:

erlang

What happen when you see the following error message in the Erlang VM?

** Connection attempt from disallowed node [email protected] **

Is it about when we do not set cookies for two nodes or when we set different cookies for two nodes?

like image 934
erlang Avatar asked Jan 05 '23 23:01

erlang


1 Answers

This is because both nodes don't have the same cookie. Start both nodes with the same cookie and check that the cookie on both nodes are identical using

erlang:get_cookie().
like image 181
byaruhaf Avatar answered Jan 14 '23 16:01

byaruhaf