librabbitmq-tools.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.docbook.org/xml/4.5/docbookx.dtd"
  3. [
  4. <!ENTITY date SYSTEM "man-date.ent" >
  5. ]
  6. >
  7. <refentry lang="en">
  8. <refentryinfo>
  9. <productname>RabbitMQ C Client</productname>
  10. <authorgroup>
  11. <corpauthor>The RabbitMQ Team &lt;<ulink url="mailto:info@rabbitmq.com"><email>info@rabbitmq.com</email></ulink>&gt;</corpauthor>
  12. </authorgroup>
  13. <date>&date;</date>
  14. </refentryinfo>
  15. <refmeta>
  16. <refentrytitle>librabbitmq-tools</refentrytitle>
  17. <manvolnum>7</manvolnum>
  18. <refmiscinfo class="manual">RabbitMQ C Client</refmiscinfo>
  19. </refmeta>
  20. <refnamediv>
  21. <refname>librabbitmq-tools</refname>
  22. <refpurpose>Command line AMQP tools</refpurpose>
  23. </refnamediv>
  24. <refsect1>
  25. <title>Description</title>
  26. <para>
  27. A set of command line AMQP tools based on <systemitem
  28. class="library">librabbitmq</systemitem>. This page
  29. describes common options and conventions used by all of
  30. the tools.
  31. </para>
  32. </refsect1>
  33. <refsect1>
  34. <title>Common Options</title>
  35. <variablelist>
  36. <varlistentry>
  37. <term><option>-s</option></term>
  38. <term><option>--server</option>=<replaceable class="parameter">hostname:port</replaceable></term>
  39. <listitem>
  40. <para>
  41. The host name (or address) to connect to.
  42. Defaults to localhost. The port number may
  43. also be specified; if omitted, it defaults to
  44. the standard AMQP port number (5672).
  45. </para>
  46. </listitem>
  47. </varlistentry>
  48. <varlistentry>
  49. <term><option>--vhost</option>=<replaceable class="parameter">vhost</replaceable></term>
  50. <listitem>
  51. <para>
  52. The AMQP vhost to specify when connecting.
  53. Defaults to <literal>/</literal>.
  54. </para>
  55. </listitem>
  56. </varlistentry>
  57. <varlistentry>
  58. <term><option>--username</option>=<replaceable class="parameter">username</replaceable></term>
  59. <listitem>
  60. <para>
  61. The username to authenticate to the AMQP server with. Defaults to <literal>guest</literal>.
  62. </para>
  63. </listitem>
  64. </varlistentry>
  65. <varlistentry>
  66. <term><option>--password</option>=<replaceable class="parameter">password</replaceable></term>
  67. <listitem>
  68. <para>
  69. The password to authenticate to the AMQP server with. Defaults to <literal>guest</literal>.
  70. </para>
  71. </listitem>
  72. </varlistentry>
  73. </variablelist>
  74. </refsect1>
  75. <refsect1>
  76. <title>See also</title>
  77. <para>
  78. <simplelist type='inline'>
  79. <member><citerefentry><refentrytitle>amqp-publish</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
  80. <member><citerefentry><refentrytitle>amqp-consume</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
  81. <member><citerefentry><refentrytitle>amqp-get</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
  82. </simplelist>
  83. </para>
  84. </refsect1>
  85. </refentry>