1. 시스템 서비스 제어 (systemctl)systemd는 리눅스의 모든 프로세스를 관리하는 최상위 부모 프로세스입니다.주요 명령어systemctl start [서비스명] # 서비스 즉시 시작systemctl stop [서비스명] # 서비스 즉시 종료systemctl restart [서비스명] # 서비스 재시작systemctl reload [서비스명] # 설정만 다시 읽기 (서비스 중단 없음)systemctl enable [서비스명] # 부팅 시 자동 시작systemctl enable --now [서비스명] # 자동 시작 설정 + 즉시 시작systemctl daemon-reload # 설정 파일 변경 시..