cluther wrote: > In some testing locally I've found that zeopack.py doesn't by default attempt > to connect to "localhost" or "127.0.0.1". It makes a call to gethostname and > attempts to connect to that unless the -h option is used. So you can run > "python" and enter the following into the >>> prompt to figure out what host > zeopack.py will be trying to connect to on your server. > > from socket import gethostname > gethostname() > > Once you figure out what this is, adjust your iptables rules, hosts file or > whatever is required to make sure that the server can reach that address on > port 8100.
That's it. gethostname was returning the fqdn of the host...which my hosts file points to its external ip address. I modified my hosts file so the fqdn points to 127.0.0.1 and it's working properly. Thanks! -------------------- m2f -------------------- Read this topic online here: http://forums.zenoss.com/viewtopic.php?p=36735#36735 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
