부제: 서비스(데몬)를 켜고 끄고, 부팅 자동 시작을 관리하기systemctl status nginx # 상태 확인sudo systemctl restart nginx # 재시작sudo systemctl enable nginx # 부팅 시 자동 시작$ systemctl status cron● cron.service - Regular background program processing daemon Loaded: loaded (...; enabled; preset: enabled) Active: active (running) since Sat 2026-07-04 09:10:37 UTCsystemctl은 systemd 서비스를 다룬다. start·stop·restart로 켜고..