How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows Jak sprawdzić i określić, które jest Słuchanie aplikacji lub otwarcia portów 80 i 443 w systemie Windows

After installing Apache HTTPD web server or Microsoft IIS Internet Information Services web server, or any other application software or service and daemon that requires to open and listen to port 80 (HTTP) or port 443 (HTTPS SSL), it’ll be a surprise if some other application or processes have stolen, used and occupied port 80 and/or 443. Po instalacji serwer WWW Apache httpd lub Microsoft Internet Information Services IIS serwer WWW, lub jakiegokolwiek innego oprogramowania lub usług i demon, który wymaga, aby otworzyć słuchanie i port 80 (HTTP), port 443 lub HTTPS (SSL), to będzie niespodzianka jeżeli wniosek lub inne procesy skradzione, wykorzystane i zajmowanych przez port 80 i / lub 443. No web server has been running on the Windows system before, so what’s the process that uses port 80 or 443 on the system? Nr serwer WWW został uruchomiony w systemie Windows przed, więc jaki jest proces, który używa portu 80 lub 443 w sprawie systemu?

For example, after installing Apache web server using Na przykład, po zainstalowaniu Apache Web Server za pomocą XAMPP , the following error message may appear: , Następujące komunikat może się pojawić:

(OS 10048) Only one usage of each socket address (protocol/network address/port) is normally permitted. (OS 10048) Tylko jedno użycie każdego adresu gniazda (protokół / network address / port) jest normalnie dozwolone. : make_sock: could not bind to address 0.0.0.0:80 : Make_sock: nie wiążą się adres 0.0.0.0:80
no listening sockets available, shutting down nie słucha dostępnych gniazdek, zamykanie

Here’sa few built-in commands and how to guide that can help users to find out and identify which application or process that is already using, opening and listening on port 80 or 443 on the Winodws operating system such as Windows Vista, Windows XP, Windows 7, Windows Server 2003 and 2008. Oto kilka wbudowanych poleceń i jak przewodnik, który może pomóc użytkownikom znaleźć i zidentyfikować aplikację lub proces, który jest już za pomocą, otwieranie i nasłuchuje na porcie 80 lub 443 na Winodws systemu operacyjnego, takiego jak Windows Vista, Windows XP Windows 7, Windows Server 2003 i 2008.

  1. Open Command Prompt window by typing Cmd in Run command box or Start Search, and hit Enter. Otwórz okno wiersza polecenia, wpisując polecenie cmd w polu Uruchom polecenie lub Rozpocznij wyszukiwanie, i naciśnij klawisz Enter.
  2. Type in the following netstat command: Wpisz następujące polecenie netstat:

    netstat -o -n -a | findstr 0.0:80 netstat-o-n-a | findstr 0.0:80

    or lub

    netstat -o -n -a | findstr 0.0:443 netstat-o-n-a | findstr 0.0:443

    or simply, lub po prostu,

    netstat -aon netstat-Aon

    Note: The last command will list all connection that is listening, established, starting, closing and all other states, so the list is long, and user has to manually search for rows that has connection originating or targeting to 1270.0.1:80/443 or 0.0.0.0.80/443. Uwaga: ostatnie polecenie listy wszystkie połączenia, które jest słuchanie, ustalono, uruchamiania, zamykania i wszystkich innych państw, więc lista jest długa, a użytkownik musi ręcznie wyszukać wiersze, które ma połączenie pochodzących lub kierowania do 1270.0.1:80 / 443 lub 0.0.0.0.80/443.

  3. The following line(s) of results should be returned: Następujący wiersz (-y) powinny zostać zwrócone wyniki:

    TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 8704 TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 8704

    The last column of each row is the process identified (process ID or PID). W ostatniej kolumnie każdy wiersz jest procesem zidentyfikowane (lub identyfikator procesu PID).

  4. Identify which process or application is using the port by matching the PID against Zidentyfikować, które przetwarzają lub aplikacja jest za pomocą portu, porównując z PID PID number in Task Manager Numer PID w Menedżerze zadań .

Another alternative to determine and identify which application is using port 80 or 443 is by using Telnet application. Inną alternatywą do ustalenia i określenia, która aplikacja jest przy użyciu portu 80 lub 443 jest przy użyciu aplikacji Telnet. Just type the following command to Telnet to the system in port 80 or 443: Wystarczy wpisać następujące polecenie, aby Telnet do systemu w porcie 80 lub 443:

telnet localhost 80 telnet localhost 80

or, lub,

telnet localhost 443 telnet localhost 443

If the Telnet connection can be opened, normally the banner of the application which opens the port will be shown, and help user to identify which process that actually listening on the port. Jeśli połączenia Telnet można otworzyć, zwykle hasłem wniosek, który otwiera port będzie pokazywany, i pomóc użytkownikowi określić, które faktycznie proces nasłuchuje na porcie.

Tip: The command above can be used to identify and check what processes is using any other ports too, such as 7 (Echo), 21 (FTP), 23 (Telnet), 25 (SMTP), 53 (DNS), 70 (Gopher), 79 (Finger), 107 (RTelnet), 110 (POP3), 119 (NNTP), 139 (NetBIOS), 143 (IMAP), 194 (IRC), 3128, 8080, 10000, and etc. Wskazówka: Polecenie to może zostać użyte do zidentyfikowania i sprawdzenia, jakie procesy są przy użyciu jakichkolwiek innych portów zbyt, takich jak 7 (echo), 21 (FTP), 23 (Telnet), 25 (SMTP), 53 (DNS), 70 ( Gopher), 79 (Finger), 107 (RTelnet), 110 (POP3), 119 (NNTP), 139 (NetBIOS), 143 (IMAP), 194 (IRC), 3128 8080, 10000, i itp.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WAŻNE: To jest maszyna przetłumaczony strony, które są dostarczane "tak jak są" bez gwarancji. Machine translation may be difficult to understand. Tłumaczenie maszynowe mogą być trudne do zrozumienia. Please refer to Proszę odnieść się do original English article oryginalnego artykułu w języku angielskim whenever possible. ilekroć to możliwe.

Share and contribute or get technical support and help at Udział i wkład lub uzyskać wsparcie techniczne oraz pomoc w My Digital Life Forums Mój Cyfrowy Życie Forum .



One Response to “How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows” Jednej odpowiedzi do "Jak sprawdzić i określić, które jest Słuchanie aplikacji lub otwarcia portów 80 i 443 w systemie Windows"

  1. Disable Skype from Using, Opening and Listening on Port 80 and 443 on Local Computer » My Digital Life Wyłącz Korzystanie z programu Skype, otwarcia i nasłuchuje na porcie 80 i 443 na komputerze lokalnym »Mój Cyfrowy Życie
    December 3rd, 2008 03:27 3 grudnia 2008 03:27
    1

    [...] Service) is currently installed or running on the system. [...] Service) jest aktualnie zainstalowane lub uruchomione w systemie. If you investigates to the root by identifying which application is using the port 80, the cause of the problem is due to Skype. Jeśli bada do katalogu głównego aplikacji poprzez określenie, które jest przy użyciu portu 80, przyczyną problemu jest ze względu na Skype. Skype allows users to use port 80 and 443 as an [...] Skype pozwala użytkownikom korzystać z portu 80 i 443 jako [...]

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Możesz użyć tych tagów: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Subskrybuj do komentarzy funkcja została wyłączona. To receive notification of latest comments posted, subscribe to Aby otrzymywać powiadomienia o najnowszych komentarzy delegowanych, aby subskrybować My Digital Life Comments RSS feed Moje Digital Life Komentarze RSS or lub register to receive zarejestruj by otrzymać new comments in daily email digest. nowe komentarze w dziennych digest e-mail.
Custom Search

New Articles Nowe artykuły

Incoming Search Terms for the Article Warunki dla przychodzących Szukaj artykułu