Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Mahmood N
The folder permission is root:root with 755. Regarding the symlink option in httpd.conf, I see     Options FollowSymLinks     AllowOverride None I looked at the logs, but didn't find any useful error! to follow. Do you have any idea? Jun 21 11:47:34 cluster dhcpd: DHCPDISCOVER from 00:e0:81:

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mahmood, On 6/21/16 5:43 PM, Christopher Schultz wrote: > Mahmood, > > On 6/21/16 2:54 PM, Mahmood N wrote: >> You know, the problem is that compute nodes in Rocks >> distribution use Apache web server to locate the install image. >> Currently, the

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mahmood, On 6/21/16 2:54 PM, Mahmood N wrote: > You know, the problem is that compute nodes in Rocks distribution > use Apache web server to locate the install image. Currently, the > compute node, says Unable to retrieve > http://10.10.10.1/instal

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mahmood, On 6/21/16 2:45 PM, Mahmood N wrote: >> tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 28122/xinetd Shows the >> port, 5666, the PID, 28122, and the program name, xinetd > So, you still don't know what is the IP address (network > interface)? I mean

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Mahmood N
You know, the problem is that compute nodes in Rocks distribution use Apache web server to locate the install image. Currently, the compute node, says Unable to retrieve http://10.10.10.1/install/rocks-dist/x86_64/images/install.img The guys on Rocks mailing list suggested that the root of we

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread rwebb
So in your case, the "*" means all interfaces and all IP's. So you would be able to hit https on eth0 with IP 10.10.10.1 and on eth1 with IP 172.20.54.10. On Tue, 21 Jun 2016 18:45:15 + (UTC) Mahmood N wrote: tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 28122/xinetd> Shows the port, 5666, the

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Mahmood N
> tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 28122/xinetd> Shows the port, 5666, the > PID, 28122, and the program name, xinetdSo, you still don't know what is the > IP address (network interface)? I mean eth0, eth1 and ... Mine is different! root@cluster:~# netstat -pat | grep httpd tcp    0 

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread rwebb
Not sure what you are actually looking for. You stated, "There are some network commands (netstat -pat), but they show the TCP port in use." Last I checked, Apache only used TCP ports. So the netstat command that you referenced should show exactly what you need. Here is an example from a Red H

Re: [users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mahmood, On 6/21/16 2:29 PM, Mahmood N wrote: > How can I find which IP:PORT Apache web server is monitoring? There > are some network commands (netstat -pat), but they show the TCP > port in use. The machine has multiple network interfaces and the

[users@httpd] find IP and PORT in use by Apache

2016-06-21 Thread Mahmood N
Hi,How can I find which IP:PORT Apache web server is monitoring? There are some network commands (netstat -pat), but they show the TCP port in use. The machine has multiple network interfaces and the Listen section in httpd.conf is commented. So, one of the is used by default and I don't know wh