Note:
CentOS7(RHEL7)부터 기존에 사용하던 service 명령이 실행되지 않을 수 있습니다. systemctl 명령어를 사용해주세요.
- systemctl: /usr/bin/systemctl
- service: /sbin/service
명령어 종류systemctl (CentOS7)service (CentOS6)
아파치 상태 확인 | systemctl status httpd | service httpd status |
아파치 시작 | systemctl start httpd | service httpd start |
아파치 정지 | systemctl stop httpd | service httpd stop |
아파치 재시작 | systemctl restart httpd | service httpd restart |
아파치 리로드 | systemctl reload httpd | service httpd reload |
아파치 자동시작 설정(On) | systemctl enable httpd | chkconfig httpd on |
아파치 자동시작 해제(Off) | systemctl disable httpd | chkconfig httpd off |
아파치 자동시작 확인 | systemctl is-enabled httpd | chkconfig httpd |
자동 실행 서비스 목록 | systemctl list-unit-files --type=service | chkconfig --list httpd |
아파치 마스크 | systemctl mask http | |
아파치 언마스크 | systemctl unmask http | |
방화벽 시작 | systemctl start firewalld | service iptables start |
방화벽 중지 | systemctl stop firewalld | service iptables stop |
방화벽 자동시작 적용 | systemctl enable firewalld | chkconfig iptables off |
방화벽 자동시작 해제 | systemctl disable firewalld | chkconfig iptables on |
반응형
'얕고넓은지식 > linux' 카테고리의 다른 글
Centos7 phpmyadmin 사용자 추가하려는데 오류가?! centos7 phpmyadmin Your privilege table structure seems... (0) | 2021.03.23 |
---|---|
phpmyadmin #1862 MySQL 서버에 로그인할 수 없습니다 (0) | 2021.03.23 |
Centos 7 Testing 123.. 계속되면.... (2) | 2021.03.23 |
Centos 7 리눅스 웹서버 구축 ( APM ) 나볼라고 펌 (0) | 2021.03.23 |
centos 7 ssh 설치중 이런 오류가 뜬다면? Job for ssh.service failed because the control process exited with error code. See "systemctl status ssh.service" and "journalctl -xe" for details. (0) | 2021.03.23 |
CentOS 7 PHP 7.3 설치 방법 (0) | 2021.03.22 |
CentOS 7.x MySQL 5.7 설치 & Error: Package: akonadi-mysql-1.9.2-4.el7.x86_64 (@anaconda) (0) | 2021.03.22 |
centos7 mysql 비밀번호 초기화 (0) | 2021.03.22 |
mysql 필드에서 특정 기간전 데이터 삭제처리 쿼리 (0) | 2021.02.15 |
usb 가상 디스크관리자 지정된 파일을 찾을수 없습니다 (0) | 2021.01.23 |