|
14 | 14 | .\" The Initial Developer of the Original Code is Pivotal Software, Inc. |
15 | 15 | .\" Copyright (c) 2007-2017 Pivotal Software, Inc. All rights reserved. |
16 | 16 | .\" |
17 | | -.Dd April 25, 2017 |
| 17 | +.Dd January 25, 2019 |
18 | 18 | .Dt RABBITMQ-SERVER 8 |
19 | 19 | .Os "RabbitMQ Server" |
20 | 20 | .Sh NAME |
21 | 21 | .Nm rabbitmq-server |
22 | | -.Nd start RabbitMQ AMQP server |
| 22 | +.Nd starts a RabbitMQ node |
23 | 23 | .\" ------------------------------------------------------------------ |
24 | 24 | .Sh SYNOPSIS |
25 | 25 | .\" ------------------------------------------------------------------ |
|
28 | 28 | .\" ------------------------------------------------------------------ |
29 | 29 | .Sh DESCRIPTION |
30 | 30 | .\" ------------------------------------------------------------------ |
31 | | -RabbitMQ is an implementation of AMQP, the emerging standard for high |
32 | | -performance enterprise messaging. |
33 | | -The RabbitMQ server is a robust and scalable implementation of an AMQP |
34 | | -broker. |
| 31 | +RabbitMQ is an open source multi-protocol messaging broker. |
35 | 32 | .Pp |
36 | 33 | Running |
37 | 34 | .Nm |
38 | | -in the foreground displays a banner message, and reports on progress in |
39 | | -the startup sequence, concluding with the message |
40 | | -.Qq broker running , |
41 | | -indicating that the RabbitMQ broker has been started successfully. |
42 | | -To shut down the server, just terminate the process or use |
| 35 | +starts a RabbitMQ node in the foreground. The node will display a startup |
| 36 | +banner and report when startup is complete. |
| 37 | +To shut down the server, use service management tools or |
43 | 38 | .Xr rabbitmqctl 8 . |
44 | 39 | .\" ------------------------------------------------------------------ |
45 | 40 | .Sh ENVIRONMENT |
46 | 41 | .\" ------------------------------------------------------------------ |
47 | 42 | .Bl -tag -width Ds |
| 43 | +.It Ev RABBITMQ_CONFIG_FILE |
| 44 | +Defaults to |
| 45 | +.Pa /etc/rabbitmq/rabbitmq.conf . |
| 46 | +Node configuration file path. |
| 47 | +To learn more, see the |
| 48 | +.Lk https://www.rabbitmq.com/configure.html "RabbitMQ Configuration guide" |
48 | 49 | .It Ev RABBITMQ_MNESIA_BASE |
49 | 50 | Defaults to |
50 | 51 | .Pa /var/lib/rabbitmq/mnesia . |
51 | | -Set this to the directory where Mnesia database files should be placed. |
| 52 | +Node data directory will be located (or created) in this directory. |
| 53 | +To learn more, see the |
| 54 | +.Lk https://www.rabbitmq.com/relocate.html "RabbitMQ File and Directory guide" |
52 | 55 | .It Ev RABBITMQ_LOG_BASE |
53 | 56 | Defaults to |
54 | 57 | .Pa /var/log/rabbitmq . |
55 | 58 | Log files generated by the server will be placed in this directory. |
| 59 | +To learn more, see the |
| 60 | +.Lk https://www.rabbitmq.com/logging.html "RabbitMQ Logging guide" |
56 | 61 | .It Ev RABBITMQ_NODENAME |
57 | 62 | Defaults to |
58 | | -.Qq rabbit . |
59 | | -This can be useful if you want to run more than one node per machine - |
| 63 | +.Qq rabbit@ . |
| 64 | +followed by the computed hostname. |
| 65 | +Can be used to run multiple nodes on the same host. |
| 66 | +Every node in a cluster must have a unique |
60 | 67 | .Ev RABBITMQ_NODENAME |
61 | | -should be unique per erlang-node-and-machine combination. |
62 | | -See the |
63 | | -.Lk http://www.rabbitmq.com/clustering.html#single-machine "clustering on a single machine guide" |
64 | | -for details. |
| 68 | +To learn more, see the |
| 69 | +.Lk https://www.rabbitmq.com/clustering.html "RabbitMQ Clustering guide" |
65 | 70 | .It Ev RABBITMQ_NODE_IP_ADDRESS |
66 | | -By default RabbitMQ will bind to all interfaces, on IPv4 and IPv6 if |
67 | | -available. |
68 | | -Set this if you only want to bind to one network interface or address |
| 71 | +By default RabbitMQ will bind to all IPv6 and IPv4 interfaces available. |
| 72 | +This variable limits the node to one network interface or address |
69 | 73 | family. |
| 74 | +To learn more, see the |
| 75 | +.Lk https://www.rabbitmq.com/networking.html "RabbitMQ Networking guide" |
70 | 76 | .It Ev RABBITMQ_NODE_PORT |
71 | | -Defaults to 5672. |
| 77 | +AMQP 0-9-1 and AMQP 1.0 port. Defaults to 5672. |
| 78 | +To learn more, see the |
| 79 | +.Lk https://www.rabbitmq.com/networking.html "RabbitMQ Networking guide" |
72 | 80 | .El |
73 | 81 | .\" ------------------------------------------------------------------ |
74 | 82 | .Sh OPTIONS |
|
0 commit comments