在Debian 8上启动amqp-consume

时间:2015-10-05 23:19:15

标签: amqp rabbitmqctl

我以前在debian 7使用此命令消耗来自amqp-consume的消息,但是我安装了debian 8我觉得amqp-tools不同,它不能识别我的命令。

我注意到了一些变化。我的Web界面将端口从55672更改为15672。

amqp-consume -d -q queue.udrive.admin.uiscsi -s 10.0.1.251 -p 5672 -e "directExchangeUdrive" --vhost "/" -r "" --username=guest --password=guest /bin/bash remoteManageUiSCSI.sh
error: both --server and --url options specify server host

我认为命令期望它:

amqp-consume 
consuming command not specified
Usage: amqp-consume [-dxA?] [-u|--url=amqp://...] [-s|--server=hostname] [--port=port] [--vhost=vhost] [--username=username] [--password=password] [--ssl] [--cacert=cacert.pem] [--key=key.pem] [--cert=cert.pem] [-q|--queue=queue] [-e|--exchange=exchange] [-r|--routing-key=routing key] [-d|--declare] [-x|--exclusive] [-A|--no-ack] [-c|--count=limit] [-p|--prefetch-count=limit] [-?|--help] [--usage] [OPTIONS]... <command> <args>

我在amqp上尝试了各种各样的事情://并且它无法正常工作。

1 个答案:

答案 0 :(得分:0)

我在其他网站https://qpid.apache.org/releases/qpid-0.30/programming/book/QpidJNDI.html得到了答案,但我仍然想知道为什么这个答案不在“man amqp-consume”或rabbitmq网站上....

该命令对我有用:

amqp-consume -d -u amqp://test:test@ustorageprod/%2f -q queue.udrive.admin.uiscsi -e "directExchangeUdrive" -r "" /bin/bash remoteManageUiSCSI.sh

amqp-publish -u amqp://test:test@ustorageprod/%2f -r "queue.udrive.ustorage" -e "directExchangeUdrive" -b "$msg"