Talk:Community Jabber Servers

From OLPC
Revision as of 05:31, 8 September 2008 by MartinDengler (talk | contribs) (Server checking script: new section)
Jump to: navigation, search

is xochat still down? --HarperReed 03:29, 2 March 2008 (EST)

Yes. I must look into an issue Tom Hoffman's having in deleting the old data... Quickest way to check if it's up: nc xochat.org 5222 --morgs 08:47, 3 March 2008 (EST)
Let me know if he needs hosting. It would be a shame to lose such good name. We might be able to split it up by regions as well. like chi.xochat.org, nyc.xochat.org or whatever. i am not sure if he would be into it - but it would be great to resurrect it at least.--HarperReed 11:12, 3 March 2008 (EST)
He said here that he is happy to give out subdomains of xochat.org. Contact me via my User page email and I'll give you his email address.--morgs 12:54, 3 March 2008 (EST)


There have been a report by Sjackman that xochat.org was down on 4/19. Has anyone else experienced this? It is up for me, but there easily could be a bug. Thanks. --HarperReed 03:41, 19 April 2008 (EDT)

Yes, xochat.org is definitely down on 20080901. MartinDengler 19:31, 2 September 2008 (UTC)

build 650 uses port 5223; UP list incomplete

MartinDengler: Please review: XO's (build 650) use legacy port 5223 not 5222, which you used. You are missing Jabbers set for XO's only. -- 24.236.234.244

Thanks - the list is complete now and I've updated the little script. MartinDengler 08:55, 8 September 2008 (UTC)

Server checking script

This script will check all the servers on this Community Server page and report if they're up:

<verbatim>

$ cat ./xmpp_alive.py ; (for name in `curl http://wiki.laptop.org/go/Community_Jabber_Servers 2> /dev/null| grep "^.*\(\.com\|\.org\|\.biz\|\.us\|\.de\)" | perl -npe 's/\s*([^<]+)\s*<\/td>.*/\1/' | sort | uniq` ; do echo -n $name... ; if (./xmpp_alive.py $name > /dev/null 2>&1) ; then echo "up" ; else echo "down" ; fi ; done)

  1. !/usr/bin/python

import socket, sys socket.setdefaulttimeout(5.0) from xmpp import * success = None def test_alive(server, port):

   retval = None
   try:
       cl = Client(server)
       retval = cl.connect(server=(server, port))
   except (ValueError, StreamError), msg:
       if isinstance(msg, (ValueError, HostGone, RemoteConnectionFailed, UndefinedCondition)):
           retval = False
       else:
           retval = True
   return retval

success = test_alive(sys.argv[1], 5222) success = success or test_alive(sys.argv[1], 5223) sys.exit(0 if success else 1)

</verbatim>