I need to open a firewall port so that I can connect from one Erlang node to another. Is there a standard port?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can limit the TCP ports used by Erlang to a specified interval using the following kernel app. parameters:
erl -kernel inet_dist_listen_min 9001 inet_dist_listen_max 9005You also need to enable the
4369TCP port, as it is used by epmd. (This port can also be changed by theERL_EPMD_PORTenvironment variable.)