Skip to content

Instantly share code, notes, and snippets.

@openfly
Created February 2, 2015 23:34
Show Gist options
  • Save openfly/9806f7cc044c10d37a48 to your computer and use it in GitHub Desktop.
Save openfly/9806f7cc044c10d37a48 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import socket
from kombu import Connection
host = "localhost"
port = 5672
user = "guest"
password = "guest"
vhost = "/"
url = 'amqp://{0}:{1}@{2}:{3}/{4}'.format(user, password, host, port, vhost)
with Connection(url) as c:
try:
c.connect()
except socket.error:
raise ValueError("Received socket.error, "
"rabbitmq server probably isn't running")
except IOError:
raise ValueError("Received IOError, probably bad credentials")
else:
print "Credentials are valid"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment