在安装rabbitmq以前,须要先安装一些依赖关系,好比erlang,下面介绍安装方法:python
1.安装依赖关系包web
sudo apt-get install build-essential libncurses5-dev m4 libssl-dev unixodbc unixodbc-dev libc6 freeglut3-dev libwxgtk2.8-dev xsltproc fop g++ build-essential
2.下载源码包shell
wget https://packages.erlang-solutions.com/erlang/esl-erlang/FLAVOUR_1_general/esl-erlang_19.1-2~ubuntu~precise_i386.deb
3.安装ubuntu
sudo dpkg -i esl-erlang_19.1-2~ubuntu~precise_i386.deb
4.验证安装成功async
erl
输出以下信息:ide
Erlang /OTP19 (erts-8.1) [source-77fb4f8] [async-threads:10] [hipe] [kernel-poll:false] Eshell V8.1 (abort with ^G) 1>
1.下载安装包oop
wget http://www.rabbitmq.com/releases/rabbitmq-server/v3.4.3/rabbitmq-server_3.4.3-1_all.deb
2.安装测试
sudo dpkg -i rabbitmq-server_3.4.3-1_all.deb
3.重启rabbitmq-server服务ui
sudo /etc/init.d/rabbitmq-server restart
4.查看rabbitmq服务this
ps -ef |grep rabbitmq
5.rabbitmq web管理页面插件安装
rabbitmq-plugins enable rabbitmq_management
安装完成后便可经过http://localhost:15672/ 进行访问。
1.下载安装包
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
2.解压
tar -zxvf setuptools-0.6c11.tar.gz
3.进入setuptools-0.6c11源目录
cd setuptools-0.6c11
4.编译
python setup.py build
5.安装
python setup.py install
1.下载安装包
wget https://pypi.python.org/packages/source/p/pika/pika-0.9.14.tar.gz#md5=b99aad4b88961d3c7e4876b8327fc97c
2.解压
tar zxvf pika-0.9.14.tar.gz
3.安装
python setup.py install
采用最简单的状况做为实例,发送消息,接收并打印出来便可。以下图所示:
send.py
#!/usr/bin/env python import pika # 1. Establish a connection with RabbitMQ server. connection = pika.BlockingConnection(pika.ConnectionParameters( 'localhost')) channel = connection.channel() # 2. Create a queue to which the message will be delivered, let's name it 'hello' channel.queue_declare(queue='hello') # 3. Use a default exchange identified by an empty string, which allows us to specify # exactly to which queue the message should go. The queue name needs to be specified # in the routing_key parameter: channel.basic_publish(exchange='', routing_key='hello', body='Hello World!') print " [x] Sent 'Hello World!'" # 4. Close the connection connection.close()
recv.py
#!/usr/bin/env python import pika # 1. Establish a connection with RabbitMQ server connection = pika.BlockingConnection(pika.ConnectionParameters( host='localhost')) channel = connection.channel() # 2. Make sure that the queue exists,run the command as many times as we like, and only one will be created. channel.queue_declare(queue='hello') print ' [*] Waiting for messages. To exit press CTRL+C' # 3. Define a callback function.Whenever we receive a message, # this callback function is called by the Pika library. def callback(ch, method, properties, body): print " [x] Received %r" % (body,) # 4. Subscribe the callback function to a queue. # Tell RabbitMQ that this particular callback function should receive messages from our hello queue. channel.basic_consume(callback, queue='hello', no_ack=True) # 5. Enter a never-ending loop that waits for data and runs callbacks whenever necessary. channel.start_consuming()
测试结果
python send.py ——>[x] Sent 'Hello World!' python recv.py ——>[*] Waiting for messages. To exit press CTRL+C [x] Received 'Hello World!' [x] Done