0Pricing
Erlang OTP: Distributed & Fault-Tolerant Systems Programming · 강의

노드 통신 및 설정

여러 Erlang 노드를 설정하고 연결하며 기반이 되는 분산 프로토콜과 보안 메커니즘을 이해합니다.

노드 통신 및 설정은(는) CoddyKit의 무료 Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Erlang OTP: Distributed & Fault-Tolerant Systems Programming 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Welcome to Distributed Erlang

Erlang shines in building distributed systems! It allows multiple Erlang Virtual Machines (VMs), called nodes, to communicate seamlessly.

This lesson introduces how to set up and connect these nodes, forming the foundation for fault-tolerant and scalable applications.

Understanding Erlang Node Names

Every Erlang node needs a unique name to identify itself in a distributed system. There are two types of names:

  • Short names (e.g., mynode): Used for nodes on the same local machine or network segment. Started with -sname.
  • Long names (e.g., node1@example.com): Essential for nodes distributed across different hosts and networks. Requires a fully qualified domain name (FQDN) and started with -name.

We'll primarily use short names for local examples.

The Erlang Cookie: Shared Secret

For two Erlang nodes to communicate, they must share a common secret key called the Erlang cookie. Think of it like a password for node-to-node authentication.

  • If nodes have different cookies, they cannot connect.
  • The cookie is a string (e.g., mysecretcookie).
  • It's crucial for security: keep your cookies secret and generate strong ones!

Starting Your First Node

Let's start an Erlang node with a short name and a cookie. Open your terminal and run:

erl -sname alpha -setcookie myappsecret

Once the Erlang shell loads, you can check your node's name and cookie:

  • node(). (shows the node's full name)
  • erlang:get_cookie(). (shows the cookie)

EPMD: The Port Mapper Daemon

When an Erlang node starts, it registers itself with a local process called EPMD (Erlang Port Mapper Daemon).

EPMD's job is to keep track of which Erlang nodes are running on the local host and which TCP ports they are listening on. When one node wants to connect to another on the same machine, it asks EPMD for the target node's port number.

You can see registered nodes with epmd -names in a separate terminal.

Connecting Two Local Nodes

Now, start a second node in another terminal. Make sure to use the same cookie:

erl -sname beta -setcookie myappsecret

From the alpha node's shell, try to ping beta:

net_adm:ping(beta@~s).

Replace ~s with your machine's hostname (e.g., net_adm:ping(beta@localhost).). If it returns pong, they are connected! You can also use nodes(). to see connected nodes.

Demonstrating Node Identity

This simple Erlang module helps identify the current node. It's a full program that reports its own node name.

Save this as node_id.erl, compile it in your Erlang shell (c(node_id).), and then call node_id:print_name(). to see the output.

-module(node_id).
-export([print_name/0]).

print_name() ->
    io:format("Current node name: ~p~n", [node()]).

Long Node Names for Remote Hosts

For connecting nodes across different physical machines or networks, you must use long node names with the -name flag. This requires using the node's fully qualified domain name (FQDN) or IP address.

Example: erl -name node1@server.example.com -setcookie myappsecret

Using long names ensures that nodes can be uniquely identified and reached over a wider network.

Basic Security Considerations

While the Erlang cookie provides basic authentication, consider these points:

  • Strong Cookies: Use long, random strings for production environments.
  • Firewall Rules: Configure firewalls to allow EPMD (port 4369) and the dynamic Erlang node ports to communicate only between trusted hosts.
  • TLS: For sensitive data or untrusted networks, use Transport Layer Security (TLS) for encrypted communication (covered in a later lesson).

Quick Check on Node Setup

You've learned about Erlang nodes, naming, cookies, and EPMD. Let's test your understanding!

Recap: Node Communication Fundamentals

You've taken the first step into distributed Erlang! We covered:

  • Erlang Nodes: Separate Erlang VMs that can communicate.
  • Node Names: -sname for local, -name for remote (FQDN).
  • Erlang Cookie: A shared secret for node authentication.
  • EPMD: The daemon for local node discovery.
  • Connecting Nodes: Using net_adm:ping/1 to establish communication.

Next, we'll explore how these connected nodes can actually talk to each other!

자주 묻는 질문

“노드 통신 및 설정” 강의는 무료인가요?

네 — “노드 통신 및 설정” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의 전체를 잠금 해제할 수 있습니다. Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의에는 총 4개의 강의가 포함되어 있습니다.

“노드 통신 및 설정”에서 뭘 배우나요?

여러 Erlang 노드를 설정하고 연결하며 기반이 되는 분산 프로토콜과 보안 메커니즘을 이해합니다. 브라우저에서 직접 실행하는 실습 코드로 Erlang OTP: Distributed & Fault-Tolerant Systems Programming을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Erlang OTP: Distributed & Fault-Tolerant Systems Programming을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Erlang OTP: Distributed & Fault-Tolerant Systems Programming은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.

“노드 통신 및 설정” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Erlang OTP: Distributed & Fault-Tolerant Systems Programming 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 노드 통신 및 설정
  2. 원격 프로시저 호출(RPC)
  3. 전역 프로세스 등록
  4. 분산 보안과 쿠키
← Erlang OTP: Distributed & Fault-Tolerant Systems Programming(으)로 돌아가기