man pages
[yaz-moved-to-github.git] / doc / ztest-options.xml
1 <!-- 
2    $Id: ztest-options.xml,v 1.1 2002-09-16 14:16:31 adam Exp $
3    Options for generic frontend server and yaz-ztest.
4    Included in both manual and man page for yaz-ztest
5 -->
6
7 <variablelist>
8  
9  <varlistentry><term><literal>-a </literal>
10    <replaceable>file</replaceable></term>
11   <listitem><para>
12     Specify a file for dumping PDUs (for diagnostic purposes).
13     The special name <literal>-</literal> (dash) sends output to
14     <literal>stderr</literal>.
15    </para></listitem></varlistentry>
16  
17  <varlistentry><term><literal>-S</literal></term>
18   <listitem><para>
19     Don't fork or make threads on connection requests. This is good for
20     debugging, but not recommended for real operation: Although the
21     server is asynchronous and non-blocking, it can be nice to keep
22     a software malfunction (okay then, a crash) from affecting all
23     current users.
24    </para></listitem></varlistentry>
25  
26  <varlistentry><term><literal>-1</literal></term>
27   <listitem><para>
28     Like <literal>-S</literal> but after one session the server
29     exits. This mode is for debugging <emphasis>only</emphasis>.
30    </para></listitem></varlistentry>
31  
32  <varlistentry><term><literal>-T</literal></term>
33   <listitem><para>
34     Operate the server in threaded mode. The server creates a thread
35     for each connection rather than a fork a process. Only available
36     on UNIX systems that offers POSIX threads.
37    </para></listitem></varlistentry>
38
39  <varlistentry><term><literal>-s</literal></term>
40   <listitem><para>
41     Use the SR protocol (obsolete).
42    </para></listitem></varlistentry>
43
44  <varlistentry><term><literal>-z</literal></term>
45   <listitem><para>
46     Use the Z39.50 protocol (default). This option and <literal>-s</literal>
47     complement each other.
48     You can use both multiple times on the same command
49     line, between listener-specifications (see below). This way, you
50     can set up the server to listen for connections in both protocols
51     concurrently, on different local ports.
52    </para></listitem></varlistentry>
53
54  <varlistentry><term><literal>-l </literal>
55    <replaceable>file</replaceable></term>
56   <listitem><para>The logfile.
57    </para></listitem></varlistentry>
58
59  <varlistentry><term><literal>-c </literal>
60    <replaceable>config</replaceable></term>
61   <listitem><para>A user option that serves as a specifier for some
62     sort of configuration, e.g. a filename.
63     The argument to this option is transferred to member
64     <literal>configname</literal>of the
65     <literal>statserv_options_block</literal>.
66    </para></listitem></varlistentry>
67
68  <varlistentry><term><literal>-v </literal>
69    <replaceable>level</replaceable></term>
70   <listitem><para>
71     The log level. Use a comma-separated list of members of the set
72     {fatal,debug,warn,log,malloc,all,none}.
73    </para></listitem></varlistentry>
74
75  <varlistentry><term><literal>-u </literal>
76    <replaceable>uid</replaceable></term>
77   <listitem><para>
78     Set user ID. Sets the real UID of the server process to that of the
79     given user. It's useful if you aren't comfortable with having the
80     server run as root, but you need to start it as such to bind a
81     privileged port.
82    </para></listitem></varlistentry>
83
84  <varlistentry><term><literal>-w </literal>
85    <replaceable>dir</replaceable></term>
86   <listitem><para>
87     The server changes to this directory during before listening 
88     on incoming connections. This option is useful
89     when the server is operating from the <application>inetd</application>
90     daemon (see <literal>-i</literal>).
91    </para></listitem></varlistentry>
92
93  <varlistentry><term><literal>-i</literal></term>
94   <listitem><para>
95     Use this to make the the server run from the
96     <application>inetd</application> server (UNIX only).
97    </para></listitem></varlistentry>
98  
99  <varlistentry><term><literal>-install</literal></term>
100   <listitem><para>
101     Use this to install the server as an NT service
102     (Windows 2000/NT only). 
103     Control the server by going to the Services in the Control Panel.
104    </para></listitem></varlistentry>
105  
106  <varlistentry><term><literal>-remove</literal></term>
107   <listitem><para>
108     Use this to remove the server from the NT services
109     (Windows 2000/NT only). 
110    </para></listitem></varlistentry>
111  
112  <varlistentry><term><literal>-t </literal>
113    <replaceable>minutes</replaceable></term>
114   <listitem><para>
115     Idle session timeout, in minutes.
116    </para></listitem></varlistentry>
117  
118  <varlistentry><term><literal>-k </literal>
119    <replaceable>size</replaceable></term>
120   <listitem><para>
121     Maximum record size/message size, in kilobytes.
122    </para></listitem>
123  </varlistentry>
124  
125 </variablelist>
126
127 <!-- Keep this comment at the end of the file
128 Local variables:
129 mode: sgml
130 sgml-omittag:t
131 sgml-shorttag:t
132 sgml-minimize-attributes:nil
133 sgml-always-quote-attributes:t
134 sgml-indent-step:1
135 sgml-indent-data:t
136 sgml-parent-document: "yaz.xml"
137 sgml-local-catalogs: nil
138 sgml-namecase-general:t
139 End:
140 -->