Skip to content

Instantly share code, notes, and snippets.

@uncelvel
Created May 28, 2021 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uncelvel/b6384fb32628c244bcdd7a48f16a36e8 to your computer and use it in GitHub Desktop.
Save uncelvel/b6384fb32628c244bcdd7a48f16a36e8 to your computer and use it in GitHub Desktop.
check_rabbitmq.py
#!/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