하은양 믿음군 효실맘 호홍홍집s

아파치 (13)Permission denied: make_sock: could not bind to address [::]:444 본문

가벼운 배움/서버관련

아파치 (13)Permission denied: make_sock: could not bind to address [::]:444

호홍홍집 2015. 12. 17. 13:14

아파치 시작시 :

(13)Permission denied: make_sock: could not bind to address [::]:444
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:444
no listening sockets available, shutting down
Unable to open logs

요런 오류가 날때...

$ netstat -tunpl
사용하고 있는 다른 프로세서가 있는지 확인
--> 있으면 해당 프로세서를 정지하고 아파치가동

그래도 안되면...
# semanage port -l | grep http
http_cache_port_t              tcp      3128, 8080, 8118, 8123, 10001-10010
http_cache_port_t              udp      3130
http_port_t                    tcp      80, 443, 488, 8008, 8009, 8443
pegasus_http_port_t            tcp      5988
pegasus_https_port_t           tcp      5989

# semanage port -a -t http_port_t -p tcp 444

# semanage port -l | grep http
http_cache_port_t              tcp      3128, 8080, 8118, 8123, 10001-10010
http_cache_port_t              udp      3130
http_port_t                    tcp      444, 80, 443, 488, 8008, 8009, 8443
pegasus_http_port_t            tcp      5988
pegasus_https_port_t           tcp      5989

요딴식으로 추가해준당...