Would you like to react to this message? Create an account in a few clicks or log in to continue.

Blade Time

Latest topics

» Sorry i wan not active!
How To Open Port 80 ! I_icon_minitimeThu May 06, 2010 3:39 pm by faseeh2006

» TOP 20 TRICKS TO SPEED UP YOUR PC
How To Open Port 80 ! I_icon_minitimeFri Apr 16, 2010 10:14 am by JianWei-Jw

» Upload your files
How To Open Port 80 ! I_icon_minitimeMon Apr 12, 2010 4:29 pm by faseeh2006

» Basic Skills!
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:19 pm by faseeh2006

» How to Download, Decompress and Burn Playstation 2 Games
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:17 pm by iyenboy

» Beginner's Guide to BitTorrent/UTorrent or any Torrent Client
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:14 pm by iyenboy

» How To Use PCSX2 - The Playstation 2 Emulator !
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:11 pm by iyenboy

» how to use kaspersky for lifetime !!
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:09 pm by iyenboy

» How to Crack CD protection
How To Open Port 80 ! I_icon_minitimeFri Apr 09, 2010 10:06 pm by iyenboy

Navigation


    How To Open Port 80 !

    iyenboy
    iyenboy


    Posts : 103
    Points : 276
    Reputation : 0
    Join date : 2010-04-03
    Age : 26
    Location : PJ,Malaysia

    How To Open Port 80 ! Empty How To Open Port 80 !

    Post  iyenboy Fri Apr 09, 2010 10:00 pm

    How To Open Port 80 !

    After installing Apache HTTP 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. 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?
    If I am right, then many people want to open their port 80 for things like torrents and web server ! This tutorial will show you how you can open and concentrate your port 80 on a single application !

    Here’s a 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.


    1. Open Command Prompt window by typing Cmd in Run command box or Start Search, and hit Enter.

    2. Type in the following netstat command:


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

    or

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

    or simply

    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.

    3. The following line(s) of results should be returned:

    Code:

    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).

    4. Identify which process or application is using the port by matching the PID against PID number in Task Manager.

    Another alternative to determine and identify which application is using port 80 or 443 is by using Telnet application. Just type the following command to Telnet to the system in port 80 or 443:

    Code:

    telnet localhost 80

    or,

    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.

    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.

      Current date/time is Tue May 07, 2024 1:29 am