• rabbitmqctl 常用命令


    持续更新中...


    1. 查看服务器状态
    rabbitmqctl status
    
    1. 查看队列信息
    list_queues[-p vhostpath] [queueinfoitem ...]
    

    The queueinfoitem parameter is used to indicate which queue information items to include in the results. The column order
    in the results will match the order of the parameters. queueinfoitem can take any value from the list that follows:

    • name: The name of the queue.
    • messages: Sum of ready and unacknowledged messages.
    • consumers: Number of consumers.

    可以通过该命令查看队列消息积压情况.

    1. 查看绑定信息
    list_bindings [-p vhost] [bindinginfoitem ...]
    

    The bindinginfoitem parameter is used to indicate which binding information items to include in the results. The column order
    in the results will match the order of the parameters. bindinginfoitem can take any value from the list that follows:

    • source_name: The name of the source of messages to which the binding is attached. 当 source_kind 是 exchange 时, source_name 展示的是 exchange 名称. 如果为空则表示使用的默认 exchange
    • source_kind: The kind of the source of messages to which the binding is attached. Currently always exchange.
    • destination_name: The name of the destination of messages to which the binding is attached. 当 destination_kind 是 queue 时, destination_name 展示的是 queue 名称.
    • destination_kind: The kind of the destination of messages to which the binding is attached.
    • routing_key: The binding's routing key.
    1. 查看 connection 信息
    list_connections [connectioninfoitem ...]
    

    Returns TCP/IP connection statistics.

    The connectioninfoitem parameter is used to indicate which connection information items to include in the results. The column
    order in the results will match the order of the parameters. connectioninfoitem can take any value from the list that follows:

    • name: Readable name for the connection.
    • state: Connection state; one of starting, tuning, opening, running, flow, blocking, blocked, closing, closed.
    • channels: Number of channels using the connection.

    有问题欢迎留言交流。

    技术交流群:282575808
    点击链接加入群聊【互联网技术交流群】

  • 相关阅读:
    uni-app之预加载和取消预加载(仅支持APP和H5)——uni.preloadPage、uni.unPreloadPage
    JavaScript 之数组对象(Array)
    【2019csp模拟】文件列表
    【2019csp模拟】两段子序列
    B. 【普转提七联测 Day 6】载重
    C.【普转提七联测 Day 6】分数
    A. 【普转提七联测 Day 6】石头
    struct和class的区别
    TagHelper中获取当前Url
    为什么要使用 Taghelper (标记助手)
  • 原文地址:https://www.cnblogs.com/xxoome/p/14844404.html
Copyright © 2020-2023  润新知