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
點擊鏈接加入群聊【互聯網技術交流群】


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM