본문 바로가기

Server

[리눅스/아파치] 아파치 서버 재시작 명령어 안될때

부제 : service apachectl restart not working

 

환경 : CentOS 7 / Apache 2.4.57

 

아래 명령어 실행해도 아파치 재시작이 안됨

$ sudo service apachectl restart

 

이럴때는..

아파치가 설치된 경로의 bin 폴더로 이동한다

$ cd /usr/local/apache/bin

여기서 apachectl로 start,stop,restart를 실행하면 된당

$ ./apachectl restart

 

매번 경로를 찾아와서 재시작 하기 귀찮기 때문에..

systemctl을 사용할 수 있게 바꿔주자..

(내일의 나를 위해 지금의 내가 후딱 해버리자..)

$ sudo cp /usr/local/apache/bin/apachectl /etc/init.d/
$ sudo chmod +x /etc/init.d/apachectl

1. 아파치 서버 제어 파일을 시스템 서비스 스크립트 파일로 복사

2. 실행 권한 부여

 

이제

sudo service apachectl restart

를 쓸 수 있다...

 

집에가고싶다

 

 

 

 

 

 

 

 

 

 

 

 

ㄴㅇㄴ

'Server' 카테고리의 다른 글

[리눅스/FTP/FileZilla]  (0) 2023.08.18