Okay
Okay

Reputation: 160

pika.exceptions.ConnectionClosed: Connection to ***.***.*.*:5672 failed: timeout

I am trying to connect to one of my development server via rabbitmq. I am able to connect to all other servers except one. I am able to connect this server to itself.

I have tried almost all the solutions in stackoverflow.

connection=pika.BlockingConnection(pika.ConnectionParameters(credentials=credentials,host="**.***.*.*",socket_timeout=300))

pika.exceptions.ConnectionClosed:Connection to **.***.*.*:5672 failed: timeout

Upvotes: 2

Views: 571

Answers (1)

Agus Mathew
Agus Mathew

Reputation: 941

first check wheather rabbitmq is running

sudo service rabbitmq-server status

then check if you are able to ping the server

run ping 12.123.1.1 now we have to check if port is open or not

telnet 12.123.1.1 5672

Upvotes: 2

Related Questions