APUE Learning Example Source Code
guowenxue
2019-06-26 157be0b0d4c7d4809cfcafc76235cc18388378c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet type="text/xsl" href="manpage.xsl"?>
 
<refentry xml:id="mosquitto_passwd" xmlns:xlink="http://www.w3.org/1999/xlink">
    <refmeta>
        <refentrytitle>mosquitto_passwd</refentrytitle>
        <manvolnum>1</manvolnum>
        <refmiscinfo class="source">Mosquitto Project</refmiscinfo>
        <refmiscinfo class="manual">Commands</refmiscinfo>
    </refmeta>
 
    <refnamediv>
        <refname>mosquitto_passwd</refname>
        <refpurpose>manage password files for mosquitto</refpurpose>
    </refnamediv>
 
    <refsynopsisdiv>
        <cmdsynopsis>
            <command>mosquitto_passwd</command>
            <group>
                <arg choice='plain'><option>-c</option></arg>
                <arg choice='plain'><option>-D</option></arg>
            </group>
            <arg choice='plain'><replaceable>passwordfile</replaceable></arg>
            <arg choice='plain'><replaceable>username</replaceable></arg>
        </cmdsynopsis>
        <cmdsynopsis>
            <command>mosquitto_passwd</command>
            <arg choice='plain'><option>-b</option></arg>
            <arg choice='plain'><replaceable>passwordfile</replaceable></arg>
            <arg choice='plain'><replaceable>username</replaceable></arg>
            <arg choice='plain'><replaceable>password</replaceable></arg>
        </cmdsynopsis>
        <cmdsynopsis>
            <command>mosquitto_passwd</command>
            <arg choice='plain'><option>-U</option></arg>
            <arg choice='plain'><replaceable>passwordfile</replaceable></arg>
        </cmdsynopsis>
    </refsynopsisdiv>
 
    <refsect1>
        <title>Description</title>
        <para><command>mosquitto_passwd</command> is a tool for managing
            password files for the mosquitto MQTT broker.</para>
        <para>Usernames must not contain ":". Passwords are stored in a similar
            format to
            <citerefentry><refentrytitle>crypt</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
    </refsect1>
 
    <refsect1>
        <title>Options</title>
        <variablelist>
            <varlistentry>
                <term><option>-b</option></term>
                <listitem>
                    <para>Run in batch mode. This allows the password to be
                        provided at the command line which can be convenient
                        but should be used with care because the password will
                        be visible on the command line and in command
                        history.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>-c</option></term>
                <listitem>
                    <para>Create a new password file. If the file already
                        exists, it will be overwritten.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>-D</option></term>
                <listitem>
                    <para>Delete the specified user from the password
                        file.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>-U</option></term>
                <listitem>
                    <para>This option can be used to upgrade/convert a password
                        file with plain text passwords into one using hashed
                        passwords. It will modify the specified file. It does
                        not detect whether passwords are already hashed, so
                        using it on a password file that already contains
                        hashed passwords will generate new hashes based on the
                        old hashes and render the password file
                        unusable.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>passwordfile</option></term>
                <listitem>
                    <para>The password file to modify.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>username</option></term>
                <listitem>
                    <para>The username to add/update/delete.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><option>password</option></term>
                <listitem>
                    <para>The password to use when in batch mode.</para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
 
 
    <refsect1>
        <title>Examples</title>
        <para>Add a user to a new password file:</para>
        <itemizedlist mark="circle">
            <listitem><para>mosquitto_passwd <literal>-c</literal> /etc/mosquitto/passwd <literal>ral</literal></para></listitem>
        </itemizedlist>
        <para>Delete a user from a password file</para>
        <itemizedlist mark="circle">
            <listitem><para>mosquitto_passwd <literal>-D</literal> /etc/mosquitto/passwd <literal>ral</literal></para></listitem>
        </itemizedlist>
    </refsect1>
 
    <refsect1>
        <title>Bugs</title>
        <para><command>mosquitto</command> bug information can be found at
            <ulink url="https://github.com/eclipse/mosquitto/issues"/></para>
    </refsect1>
 
    <refsect1>
        <title>See Also</title>
        <simplelist type="inline">
            <member>
                <citerefentry>
                    <refentrytitle><link xlink:href="mosquitto-8.html">mosquitto</link></refentrytitle>
                    <manvolnum>8</manvolnum>
                </citerefentry>
            </member>
            <member>
                <citerefentry>
                    <refentrytitle><link xlink:href="mosquitto-conf-5.html">mosquitto.conf</link></refentrytitle>
                    <manvolnum>5</manvolnum>
                </citerefentry>
            </member>
            <member>
                <citerefentry>
                    <refentrytitle><link xlink:href="mqtt-7.html">mqtt</link></refentrytitle>
                    <manvolnum>7</manvolnum>
                </citerefentry>
            </member>
        </simplelist>
    </refsect1>
 
    <refsect1>
        <title>Author</title>
        <para>Roger Light <email>roger@atchoo.org</email></para>
    </refsect1>
</refentry>