728x90
아파치 서비스 시작시 다음과 같은 에러가 발생하는 경우
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
1 2 3 4 5 6 7 8 | (envalicia) root@localhost:~/vikander# sudo service apache2 restart * Restarting web server apache2 (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80 (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down AH00015: Unable to open logs Action 'start' failed. The Apache error log may have more information. | cs |
다음과 같이 아파치 프로세스를 종료시킨 후 서비스를 재시작한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | (envalicia) root@localhost:~/vikander# sudo netstat -ltnp | grep ':80' tcp 0 0 0.0.0.0:8079 0.0.0.0:* LISTEN 1225/nginx tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 10819/python tcp6 0 0 :::80 :::* LISTEN 26421/apache2 (envalicia) root@localhost:~/vikander# sudo kill -9 26421 (envalicia) root@localhost:~/vikander# sudo netstat -ltnp | grep ':80' tcp 0 0 0.0.0.0:8079 0.0.0.0:* LISTEN 1225/nginx tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 10819/python (envalicia) root@localhost:~/vikander# sudo service apache2 restart * Restarting web server apache2 [ OK ] (envalicia) root@localhost:~/vikander# sudo netstat -ltnp | grep ':80' tcp 0 0 0.0.0.0:8079 0.0.0.0:* LISTEN 1225/nginx tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 10819/python tcp6 0 0 :::80 :::* LISTEN 27679/apache2 | cs |
참고 https://ubuntuforums.org/showthread.php?t=1636667
728x90
'프로그래밍 Programming' 카테고리의 다른 글
Django Debug Toolbar 설치 + uWSGI 패널 추가하기 (0) | 2017.05.20 |
---|---|
pip install -U setuptools fails in fresh conda environment - Cannot remove entries from nonexistent file (0) | 2017.05.20 |
장고 임포트(import) 순서 및 명시적 성격의 상대 임포트 (0) | 2017.05.09 |
리스프 리스트 데이터 타입 Common Lisp: LIST - the most versatile data type (3) (0) | 2017.04.24 |
LISP - CAR/CDR Pronunciation Guide (0) | 2017.04.24 |