Debian / Ubuntu에서 Apache 2 웹 서버를 다시 시작하는 방법 / CentOS / RHEL / Fedora Linux 또는 UNIX 계열 운영 체제? Linux에서 실행되는 Apache 2 웹 서버를 시작하거나 중지하라는 명령을 알려 주시겠습니까?
튜토리얼 세부 정보 | |
---|---|
난이도 | 쉬움 (rss) |
루트 권한 | 예 |
요구 사항 | Linux / Unix의 Apache 2 |
시간 | 1m |
Apache는 주로 월드 와이드 웹에서 정적 콘텐츠와 동적 웹 페이지를 모두 제공하는 데 사용됩니다. . 많은 웹 애플리케이션은 Apache가 제공하는 환경과 기능을 고려하여 설계되었습니다. Linux 또는 Unix 계열 시스템에서 다음 방법 중 하나를 사용하여 Apache를 시작하거나 다시 시작할 수 있습니다.
먼저 ssh 클라이언트를 사용하여 웹 서버에 로그인합니다. , 서버가 로컬 데이터 센터에없는 경우 :
ssh [email protected]
로그인 한 후 Linux 또는 Unix 변형에 따라 다음 명령을 입력합니다.
Apache를 시작 / 중지 / 다시 시작하기위한 Debian / Ubuntu Linux 관련 명령
Debian Linux 버전 7.x 또는 Ubuntu Linux 버전 Ubuntu 14.10 이상에서 다음과 같이 service 또는 /etc/init.d/ 명령을 사용합니다.
Apache 2 웹 서버를 다시 시작하고 다음을 입력합니다.
# /etc/init.d/apache2 restart
또는
$ sudo /etc/init.d/apache2 restart
또는
$ sudo service apache2 restart
Apache 2 웹 서버를 중지하려면 다음을 입력하십시오.
# /etc/init.d/apache2 stop
또는
$ sudo /etc/init.d/apache2 stop
또는
$ sudo service apache2 stop
Apache 2 웹 서버를 시작하려면 다음을 입력하십시오.
또는
$ sudo /etc/init.d/apache2 start
또는
$ sudo service apache2 start
Debian / Ubuntu Linux 시스템 사용자에 대한 참고 사항
Debian Linux 버전 8.x + 또는 Ubuntu Linux 버전 Ubuntu 15.04+ 이상에서 다음 systemctl 명령을 사용합니다.
## Start command ##
systemctl start apache2.service
## Stop command ##
systemctl stop apache2.service
## Restart command ##
systemctl restart apache2.service
CentOS / RHEL (Red Hat) Linux 버전 4.x / 5.x / 6.x 또는 이전 특정 명령
## Start ##
service httpd start
## Stop ##
service httpd stop
## Restart ##
service httpd restart
CentOS / RHEL (Red Hat) Linux 버전 7.x 이상 특정 명령
현재 대부분의 최신 배포판은 systemd를 사용하므로 다음 systemctl을 사용해야합니다. 명령 :
## Start command ##
systemctl start httpd.service
## Stop command ##
systemctl stop httpd.service
## Restart command ##
systemctl restart httpd.service
openrc를 사용하여 Apache 2 시작 / 중지 / 다시 시작
서비스 명령을 다음과 같이 사용해야합니다. 루트 사용자 :
# service apache2 start
# service apache2 stop
# service apache2 status
# service apache2 restart
세션 :
* Stopping apache2 ... * Starting apache2
시작 / 중지 / 다시 시작하는 일반적인 방법 Linux / Unix의 Apache
🐧 Linux, Open S에 대한 최신 자습서를 받으십시오. ource & RSS 피드 또는 주간 이메일 뉴스 레터를 통한 DevOps.
🐧 지금까지 23 개의 댓글이 있습니다 … ↓ 추가
범주 | Unix 및 Linux 명령 목록 |
---|---|
파일 관리 | cat |
방화벽 | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
네트워크 유틸리티 | dig • 호스트 • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
패키지 관리자 | apk • apt |
프로세스 관리 | bg • chroot • cron • disown • fg • 작업 • killall • kill • pidof • pstree • pwdx • 시간 |
검색 | grep • whereis • which |
사용자 정보 | 그룹 • id • lastcomm • last • l id / libuser-lid • 로그 이름 • 구성원 • 사용자 • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • 방화벽 • Ubuntu 20.04 |