본문 바로가기
정리/시스템

apache 80포트 점유 오류

by 정재희 2017. 1. 26.

어떤 프로그램이 80 포트를 먼저 점유 하고 있다는 얘기 이므로 80포트를 점유 하고 있는

프로세스를 종료 시켜주면 된다.

 [root@streaming ~]# service httpd start

httpd (을)를 시작 중: httpd: apr_sockaddr_info_get() failed for streaming

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

(98)Address already in use: make_sock: could not bind to address [::]:80

(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80

no listening sockets available, shutting down

Unable to open logs

                                                           [실패]

[root@streaming ~]# netstat -nlp | grep 80

tcp        0      0 0.0.0.0:8000                0.0.0.0:*                   LISTEN      2123/DarwinStreamin 

tcp        0      0 0.0.0.0:8001                0.0.0.0:*                   LISTEN      2123/DarwinStreamin 

tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      2123/DarwinStreamin 

unix  2      [ ACC ]     STREAM     LISTENING     11480  1701/hald           @/var/run/hald/dbus-pGelDJPXti

[root@streaming ~]# kill -9 2123

[root@streaming ~]# service httpd start

httpd (을)를 시작 중: httpd: apr_sockaddr_info_get() failed for streaming

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

(98)Address already in use: make_sock: could not bind to address [::]:80

(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80

no listening sockets available, shutting down

Unable to open logs

                                                           [실패]

[root@streaming ~]# ps -ef | grep Darwin

root      1989     1  0 16:24 ?        00:00:00 /usr/local/sbin/DarwinStreamingServer

qtss      2147  1989  0 16:27 ?        00:00:00 /usr/local/sbin/DarwinStreamingServer

root      2170  2051  0 16:28 pts/0    00:00:00 grep Darwin

[root@streaming ~]# kill -9 1989

[root@streaming ~]# kill -9 2147

[root@streaming ~]# service httpd start

httpd (을)를 시작 중: httpd: apr_sockaddr_info_get() failed for streaming

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

                                                           [  OK  ]




'정리 > 시스템' 카테고리의 다른 글

Wowza  (0) 2017.01.26
ffmpeg 설치  (0) 2017.01.26
plexmediaserver  (0) 2017.01.21
plex  (0) 2017.01.21
XenDesktop 논리적 흐름도  (0) 2017.01.20

댓글