duanpin2009 2017-11-01 13:42
浏览 91
已采纳

RabbitMQ Producer卡在golang中

Im new to golang and rabbitmq, I have written a simple producer like this

package main

import (
    "fmt"
    "github.com/streadway/amqp"
    "log"
)

func main() {
    server()
}

func server() {
    conn, ch, q := getQueue()
    defer conn.Close()
    defer ch.Close()

    msg := amqp.Publishing{
        ContentType: "text/plain",
        Body:        []byte("Hello RabbitMQ"),
    }

    ch.Publish("", q.Name, false, false, msg)
}

func getQueue() (*amqp.Connection, *amqp.Channel, *amqp.Queue) {
    conn, err := amqp.Dial("amqp://guest:guest@localhost:5672/")
    failOnError(err, "Failed to connect to RabbitMQ")
    ch, err := conn.Channel()
    failOnError(err, "Failed to open a channel")
    q, err := ch.QueueDeclare("hello",
        false, //durable bool,
        false, //autoDelete bool,
        false, //exclusive bool,
        false,
        nil)
    failOnError(err, "Failed to declare queue")
    return conn, ch, &q
}

func failOnError(err error, msg string) {
    if err != nil {
        log.Fatalf("%s: %s", msg, err)
        panic(fmt.Sprintf("%s: %s", msg, err))
    }
}

When I run this it doesnt exit niether does it throw any error messages. In the RabbitMQ management console I can see the Queue but there is no data in it and only shows NaN.

  • 写回答

1条回答 默认 最新

  • dongqiang2069 2017-11-28 19:06
    关注

    It's probably an issue with your setup. I faced a similar issue and tried with a different Erlang and RabbitMQ installation. Try uninstalling both Erlang and RabbitMQ and maybe use an older stable version.

    Alternatively use the official RabbitMQ docker image. Follow the Docker RabbitMQ Docs for setting it up. :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line