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:41] – jchilders | hpc:rabbitmq [2016/06/24 16:28] (current) – jchilders | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== RabbitMQ Documentation ==== | ==== RabbitMQ Documentation ==== | ||
- | * < | + | * < |
* < | * < | ||
+ | |||
+ | ==== SSL Certificate Usage ==== | ||
+ | |||
+ | * Followed < | ||
+ | * Added this code to the RabbitMQ Server configuration file: | ||
+ | <code python> | ||
+ | [ | ||
+ | {rabbit, [ | ||
+ | | ||
+ | | ||
+ | {certfile,"/ | ||
+ | {keyfile,"/ | ||
+ | {verify, | ||
+ | {fail_if_no_peer_cert, | ||
+ | ]} | ||
+ | ]. | ||
+ | </ | ||
+ | * 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.1395150075.txt.gz · Last modified: 2014/03/18 13:41 by jchilders