diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-12-14 15:13:54 +0100 |
|---|---|---|
| committer | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-12-14 15:13:54 +0100 |
| commit | 065f72f8939ad3acd495697b6f9b09ff9227585a (patch) | |
| tree | db4d667b5a5c94ac63d59342bb7b1c9df88372cc /docs | |
| parent | f18311aa7275769bb4f7bdc27bdfa639f03dc7a8 (diff) | |
| download | rabbitmq-server-git-065f72f8939ad3acd495697b6f9b09ff9227585a.tar.gz | |
Polish global parameters documentation
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmqctl.1.xml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/docs/rabbitmqctl.1.xml b/docs/rabbitmqctl.1.xml index dd26d5d7ba..0465db02fd 100644 --- a/docs/rabbitmqctl.1.xml +++ b/docs/rabbitmqctl.1.xml @@ -1130,19 +1130,20 @@ <term><cmdsynopsis><command>set_global_parameter</command> <arg choice="req"><replaceable>name</replaceable></arg> <arg choice="req"><replaceable>value</replaceable></arg></cmdsynopsis></term> <listitem> <para> - Sets a global parameter. + Sets a global runtime parameter. This is similar to <command>set_parameter</command> + but the key-value pair isn't tied to a virtual host. </para> <variablelist> <varlistentry> <term>name</term> <listitem><para> - The name of the global parameter being set. + The name of the global runtime parameter being set. </para></listitem> </varlistentry> <varlistentry> <term>value</term> <listitem><para> - The value for the global parameter, as a + The value for the global runtime parameter, as a JSON term. In most shells you are very likely to need to quote this. </para></listitem> @@ -1151,7 +1152,7 @@ <para role="example-prefix">For example:</para> <screen role="example">rabbitmqctl set_global_parameter mqtt_default_vhosts '{"O=client,CN=guest":"/"}'</screen> <para role="example"> - This command sets the global parameter <command>mqtt_default_vhosts</command> to the JSON term <command>{"O=client,CN=guest":"/"}</command>. + This command sets the global runtime parameter <command>mqtt_default_vhosts</command> to the JSON term <command>{"O=client,CN=guest":"/"}</command>. </para> </listitem> </varlistentry> @@ -1159,20 +1160,21 @@ <term><cmdsynopsis><command>clear_global_parameter</command> <arg choice="req"><replaceable>name</replaceable></arg></cmdsynopsis></term> <listitem> <para> - Clears a global parameter. + Clears a global runtime parameter. This is similar to <command>clear_global_parameter</command> + but the key-value pair isn't tied to a virtual host. </para> <variablelist> <varlistentry> <term>name</term> <listitem><para> - The name of the global parameter being cleared. + The name of the global runtime parameter being cleared. </para></listitem> </varlistentry> </variablelist> <para role="example-prefix">For example:</para> <screen role="example">rabbitmqctl clear_global_parameter mqtt_default_vhosts</screen> <para role="example"> - This command clears the global parameter <command>mqtt_default_vhosts</command>. + This command clears the global runtime parameter <command>mqtt_default_vhosts</command>. </para> </listitem> </varlistentry> @@ -1180,7 +1182,8 @@ <term><cmdsynopsis><command>list_global_parameters</command></cmdsynopsis></term> <listitem> <para> - Lists all global parameters. + Lists all global runtime parameters. This is similar to <command>list_parameters</command> + but the global runtime parameters are not tied to any virtual host. </para> <para role="example-prefix">For example:</para> <screen role="example">rabbitmqctl list_global_parameters</screen> |
