본문 바로가기
Etc#Etc#Linux조회 2

systemd Unit란?

정의

systemd가 관리하는 서비스·소켓·타이머 등의 단위 파일.

Unit 파일

[Unit]
Description=My App
After=network.target

[Service]
ExecStart=/usr/bin/node /app/server.js
Restart=always

[Install]
WantedBy=multi-user.target

/etc/systemd/system/myapp.service에 배치 후 systemctl enable --now.

🔗 함께 보면 좋은 용어

Etc 전체 →