hpc:rabbitmq
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hpc:rabbitmq [2014/03/18 13:46] – jchilders | hpc:rabbitmq [2016/06/24 16:28] (current) – jchilders | ||
---|---|---|---|
Line 12: | Line 12: | ||
{rabbit, [ | {rabbit, [ | ||
| | ||
- | | + | |
- | {certfile,"/ | + | {certfile,"/ |
- | {keyfile,"/ | + | {keyfile,"/ |
{verify, | {verify, | ||
{fail_if_no_peer_cert, | {fail_if_no_peer_cert, | ||
Line 20: | Line 20: | ||
]. | ]. | ||
</ | </ | ||
+ | * Added this code to the RabbitMQ Client (via Pika) Setup: | ||
+ | <code python> | ||
+ | # | ||
+ | import pika | ||
+ | import sys,ssl | ||
+ | |||
+ | # Setup our ssl options | ||
+ | ssl_options = {" | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | |||
+ | connection = pika.BlockingConnection(pika.ConnectionParameters(host=' | ||
+ | channel = connection.channel() | ||
+ | |||
+ | channel.queue_declare(queue=' | ||
+ | |||
+ | channel.basic_publish(exchange='', | ||
+ | routing_key=' | ||
+ | body=' | ||
+ | print " [x] Sent 'Hello World!'" | ||
+ | |||
+ | connection.close() | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Errors ===== | ||
+ | |||
+ | Make sure cacerts.pem is up to date. | ||
+ | cat all / | ||
+ | |||
+ |
hpc/rabbitmq.1395150391.txt.gz · Last modified: 2014/03/18 13:46 by jchilders