본문 바로가기

Nginx

Nginx: Ubuntu에서 nginx 설치후 systemctl restart nginx 가 안될 때

728x90
반응형

Ubuntu 설치 후, 80포트가 이미 사용중인 경우가 있다.

이럴 경우 80포트로 연결해놓은 Nginx가 실행이 안되는데, 보통은 apache2가 실행되어 있는 경우가 있는거 같다.

80포트가 apache2에 의해 실행되고 있으면,

 

다음과 같이 apache2를 중지 시키고다시 nginx를 restart하자

sudo systemctl stop apache2
sudo systemctl restart nginx

 

728x90
반응형