如何启动RabbitMQ节点?

tay*_*ung 9 rabbitmq

每次尝试使用RabbitMQ进行操作时,我都会不断收到此错误:

attempted to contact: [fdbvhost@FORTE]

fdbvhost@FORTE:
  * connected to epmd (port 4369) on FORTE
  * epmd reports: node 'fdbvhost' not running at all
                  no other nodes on FORTE
  * suggestion: start the node

current node details:
- node name: 'rabbitmq-cli-54@FORTE'
- home dir: C:\Users\Jesus
- cookie hash: iuRlQy0F81aBpoY9aQqAzw==
Run Code Online (Sandbox Code Playgroud)

这是我运行rabbitmqctl -n fdbvhost status或时得到的输出/rabbitmqctl -n fdbvhost list_vhosts

我试过了rabbitmqctl -n fdbvhost start,给了我以下输出:

Error: could not recognise command
Usage:
rabbitmqctl [-n <node>] [-t <timeout>] [-q] <command> [<command options>]
...
Run Code Online (Sandbox Code Playgroud)

因此,这不会启动它。我在文档中找不到有关启动节点的任何信息。我实际上如何启动节点/虚拟主机?

Mer*_*OWA 6

尝试从RabbitMQ的安装sbin目录运行以下命令

rabbitmq-server start -detached
Run Code Online (Sandbox Code Playgroud)

如果代理节点由于某种原因而停止,则这将启动代理节点。