markdown 开始在Ubuntu上运行一个简单的rabbitmq服务器。示例来自https://www.rabbitmq.com/tutorials/tutorial-one-python.htm

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 开始在Ubuntu上运行一个简单的rabbitmq服务器。示例来自https://www.rabbitmq.com/tutorials/tutorial-one-python.htm相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
import pika

connection = pika.BlockingConnection(pika.ConnectionParameters(
        host='localhost'))
channel = connection.channel()


channel.queue_declare(queue='hello')

channel.basic_publish(exchange='',
                      routing_key='hello',
                      body='Hello World!')
print(" [x] Sent 'Hello World!'")
connection.close()
#!/usr/bin/env python
import pika

connection = pika.BlockingConnection(pika.ConnectionParameters(
        host='localhost'))
channel = connection.channel()


channel.queue_declare(queue='hello')

def callback(ch, method, properties, body):
    print(" [x] Received %r" % body)

channel.basic_consume(callback,
                      queue='hello',
                      no_ack=True)

print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
## Installation
- Download the erland deb [here](https://packages.erlang-solutions.com/erlang/#tabs-debian)
- Download the server deb [here](https://www.rabbitmq.com/install-debian.html)
- `sudo dpkg -i <erlang.deb> <server.deb>`

## Start the server
`sudo service rabbitmq-server start`

## Check server status
`sudo service rabbitmq-server status`

## Create a virtual environment (I use virtualenvwrapper)
- `mkdir -p /tmp/rabbitmq-helloworld`
- `cd /tmp/rabbitmq-helloworld`
- `mkvirtualenv -i pika rabbitmq`

## Create the scripts (see the other files)

## Start the reciever
`python receiver.py`

## Open a new tab/terminal and start the sender
`python send.py`

## Stop the server
`sudo service rabbitmq-server stop`

以上是关于markdown 开始在Ubuntu上运行一个简单的rabbitmq服务器。示例来自https://www.rabbitmq.com/tutorials/tutorial-one-python.htm的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在Ubuntu 18上安装Froxlor

markdown 如何在ubuntu上创建Vhost

markdown 在Ubuntu上安装Kubernetes集群

markdown 在Windows上安装ubuntu脱机

markdown 在Ubuntu上安装pyenv

markdown 在ubuntu上设置ssl