Ubuntu 또는 대부분의 systemd 기반 리눅스 시스템에서 구동 중인 서비스 목록을 확인하는 명령어
·
IT기술 관련/리눅스
systemctl list-units --type=service --state=running→ 현재 실행 중인 서비스(Active) 목록만 보여줍니다. 📋 전체 서비스 상태 보기 (활성 + 비활성 포함)systemctl list-units --type=service→ 모든 서비스의 상태 (running, exited, failed 등 포함)를 보여줍니다. 🧪 전체 서비스 상태 요약 (기본 포맷)service --status-all'+' = 실행 중, '-' = 멈춤 상태, '?' = 상태 미확인(단, systemd 시스템에서는 일부 서비스는 이 명령으로 제대로 확인되지 않을 수 있음)