(주)누리웨어

화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/

Linux 7 (Centos, Redhat Linux, Oracle Linux) systemctl

6버젼에서 사용했던 chkconfig로 사용하던 것들을 systemctl로 바꾸었다.

/usr/lib/systemd/system/의 하부에 링크가 걸려있는 것도 있다.

  • 목록보기

]#systemctl

]#systemctl list-units

]#systemctl list-unit-files

  • 서비스시작

]#systemctl start service명.service

  • 서비스중지

]#systemctl stop service명.service

  • 부팅시 자동실행

]#systemctl enable service명.service

  • 부팅시 자동 미실행

]#systemctl disable sercie명.service

 

  • MySql Service 등록 예제

]#vi /etc/systemd/system/mysqld.service

Unit 에서 After는 해당하는 서비스가 실행후 실행되는 서비스를 말합니다.

  • 최초 Service 파일을 만들고 아래의 명령어를 실행하면 됩니다.

  • Apache Httpd 서버 예제

    vi /etc/systemd/system/httpd.service로 해서 생성

    생성후 아래의 명령어 시행

  • systemctl enable httpd.service
  • systemctl start httpd.service

 

 

 

 

 

댓글 남기기