<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
On 2014-04-10 13:42, Khalid Baheyeldin wrote:
<blockquote
 cite="mid:CA+TuoW2ceZdzrYadUm6ROLAB01psN7Ji0tFO9Y2f5N+7w3w0hw@mail.gmail.com"
 type="cite">
  <div>$ netstat -tunlp | grep apach<br>
tcp6       0      0 :::80                   :::*                   
LISTEN      24311/apache2   <br>
  </div>
  <div>The above is the PID of the Apache process, and it is listening
on port 80.<br>
  </div>
  <div><br>
If
you use wget with HTTP headers, you will see what the server is sending
(if it is sending anything). That way you know if it is Firefox or
something else.<br>
  <br>
$ wget --server-response -O /dev/null localhost<br>
--2014-04-10 13:40:22--  <a moz-do-not-send="true"
 href="http://localhost/">http://localhost/</a><br>
Resolving localhost (localhost)... ::1, 127.0.0.1<br>
Connecting to localhost (localhost)|::1|:80... connected.</div>
</blockquote>
<br>
$ netstat -tunlp <br>
returned many hits ... advised to be root to see more<br>
$ sudo netstat -tunlp <br>
returned many hits<br>
$ sudo netstat -tunlp | grep apach<br>
NADDA<br>
<br>
$ wget --server-response -O /dev/null localhost<br>
--2014-04-10 15:16:20--  <a moz-do-not-send="true"
 href="http://localhost/">http://localhost/</a><br>
Resolving localhost (localhost)... ::1, 127.0.0.1<br>
Connecting to localhost (localhost)|::1|:80... <b>failed: Connection
refused.</b><br>
<br>
Thanks<br>
JohnJ<br>
<br>
</body>
</html>