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. -------------------- m2f -------------------- Read this topic online here: http://forums.zenoss.com/viewtopic.php?p=36734#36734 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
