1RABBITMQ-SERVER(1) RabbitMQ Server RABBITMQ-SERVER(1)
2
3
4
6 rabbitmq-server - start RabbitMQ AMQP server
7
9
10
11 rabbitmq-server [-detached]
12
14 RabbitMQ is an implementation of AMQP, the emerging standard for high
15 performance enterprise messaging. The RabbitMQ server is a robust and
16 scalable implementation of an AMQP broker.
17
18 Running rabbitmq-server in the foreground displays a banner message,
19 and reports on progress in the startup sequence, concluding with the
20 message "broker running", indicating that the RabbitMQ broker has been
21 started successfully. To shut down the server, just terminate the
22 process or use rabbitmqctl(1).
23
25 RABBITMQ_MNESIA_BASE
26 Defaults to /var/lib/rabbitmq/mnesia. Set this to the directory
27 where Mnesia database files should be placed.
28
29 RABBITMQ_LOG_BASE
30 Defaults to /var/log/rabbitmq. Log files generated by the server
31 will be placed in this directory.
32
33 RABBITMQ_NODENAME
34 Defaults to rabbit. This can be useful if you want to run more than
35 one node per machine - RABBITMQ_NODENAME should be unique per
36 erlang-node-and-machine combination. See the clustering on a single
37 machine guide[1] for details.
38
39 RABBITMQ_NODE_IP_ADDRESS
40 By default RabbitMQ will bind to all interfaces, on IPv4 and IPv6
41 if available. Set this if you only want to bind to one network
42 interface or address family.
43
44 RABBITMQ_NODE_PORT
45 Defaults to 5672.
46
48 -detached
49 Start the server process in the background. Note that this will
50 cause the pid not to be written to the pid file.
51
52 For example:
53
54 rabbitmq-server -detached
55
56 Runs RabbitMQ AMQP server in the background.
57
59 rabbitmq-env.conf(5) rabbitmqctl(1)
60
62 The RabbitMQ Team <<info@rabbitmq.com>>
63
65 1. clustering on a single machine guide
66 http://www.rabbitmq.com/clustering.html#single-machine
67
68
69
70RabbitMQ Server 07/20/2018 RABBITMQ-SERVER(1)