systemctl 명령어 사용법
출처 : http://hmjkor.tistory.com/330 Fedora 21에서는 서비스(Service) 관리를 systemctl이라는 명령어로 한다.(chkconfig, ntsysv, servce 같은 명령어는 더이상 사용하지 않는다.) 서비스 상태 확인 하기서비스 상태 확인은 다음과 같이 한다.systemctl status service_name.service예를 들어 httpd의 상태를 확인하려면 다음과 같이 명령한다.systemctl status httpd.service 서비스 시작, 중지, 재시작 하기서비스를 시작하는 기본 명령 방식은 다음과 같다.systemctl start service_name.service중지할 때에는 start 대신 stop을, 재시작할 때에는 restart를 쓰면 ..
2015.02.07