-- 서비스 파일 생성
vi /usr/lib/systemd/system/서비스명.service
ln -s /usr/lib/systemd/system/서비스명.service /etc/systemd/system/multi-user.target.wants/서비스명.service
-- 서비스 파일의 설정을 변경했다면.. reload 해야된다.
systemctl daemon-reload
-- 서비스 등록 확인
systemctl list-unit-files --type service | grep 서비스명
-- 부팅시 자동 서비스 시작 목록
systemctl list-unit-files --type service | grep enabled
-- 서비스 자동시작 활성화, 비활성화
systemctl enable 서비스명.service
systemctl disable 서비스명.service
-- 서비스 시작, 종료, 재시작
systemctl start 서비스명
systemctl stop 서비스명
systemctl restart 서비스명
-- 서비스 상태 조회
systemctl status 서비스명