본문 바로가기

리눅스 따라하기/Centos7 취약점 점검

10. /etc/(x)inetd.conf 파일 소유자 및 권한 설정

10. /etc/(x)inetd.conf 파일 소유자 및 권한 설정

 

 

centos6.x와 centos7.x가 바뀐점이다.

 

inet.d와 xinet.d를 버린거 같다. yum을 통해 깔수는 있다.

 

일단 설정해줄건 없는거 같다. 한참을 찾았네

 

 

systemd에 대해서 알아야 한다.

일단 링크 걸어 참고하자

https://lunatine.net/2014/10/21/about-systemd/

 

서비스 상태 확인 하기

 

systemctl status service_name.service

 

예를 들어 httpd의 상태를 확인하려면 다음과 같이 명령합니다.

 

systemctl status httpd.service

 

서비스 시작, 중지, 재시작 하기

서비스 시작은 다음과 같이 명령합니다.

 

systemctl start service_name.service

중지할 때에는 start 대신 stop, 재시작할 때에는 restart를 씁니다.

예를 들어 httpd를 시작, 중지, 재시작 명령은 다음과 같이 합니다.

 

systemctl start httpd.service
systemctl stop httpd.service
​systemctl restart httpd.service

 

 

부팅 시 자동 실행 하기

 

systemctl enable service_name.service

 

예를 들어 httpd를 부팅 시 자동 실행되게 하려면 다음과 같이 명령합니다.

 

systemctl enable httpd.service

 

자동 실행 되지 않게 하려면 enable 대신 disable을 쓰면 됩니다.

 

실행 중인 서비스 보기

실행 중인 모든 서비스 목록을 보려면 다음과 같이 명령합니다.

 

systemctl list-units --type=service