센토스6.8에서 아파치 재시작시키려면?
본문
우분투 경우, 보통 아래처럼 하면 재시작 합니다.
sudo service apache2 restart
또는
sudo /etc/init.d/apache2 restart
그런데,
centos 6.8 현재 서버에서는 위 명령어가 루트 폴더에서도, 위 폴더에서도 먹통입니다.
참고로, 지금 센토스 서버는 아파치가 /home/apache 구조로 설치되어 있습니다.
#find / -name apache2 명령어로 살펴보니, 결과가 아래처럼 나옵니다.
/root/src/modsecurity-apache_2.5.13/apache2
아파치를 재시작시키려면 어떤 명령어를 입력해야 할까요?
참고로,
서버 정보는 아래와 같습니다.
http://www.cafe24.com/?controller=product_page&type=server&page=server_1961 서버이고,
CentOS release 6.8 (Final)
Apache/2.2.31 (Unix)
PHP 5.3.29
mysql Ver 14.14 Distrib 5.1.73
답변 3
/etc/init.d/httpd restart
카페 24 서버호스팅 경우, 아래 명령어로 웹서버 재시작하네요.
- 시작 : [root@cafe24 /root]# /home/apache/bin/apachectl start
- 정지 : [root@cafe24 /root]# /home/apache/bin/apachectl stop
- 재시작 : [root@cafe24 /root]# /home/apache/bin/apachectl restart