Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / doc / man-pages / pod8 / fragments / volserver-options.pod
CommitLineData
805e021f
CE
1=over 4
2
3=item B<-d> <I<debug level>>
4
5Sets the detail level for the debugging trace written to the
6F</usr/afs/logs/VolserLog> file. Provide one of the following values, each
7of which produces an increasingly detailed trace: C<0>, C<1>, C<5>, C<25>,
8and C<125>.
9
10=item B<-log>
11
12Records in the /usr/afs/logs/VolserLog file the names of all users who
13successfully initiate a B<vos> command. The Volume Server also records any
14file removals that result from issuing the B<vos release> command with the
15B<-f> flag.
16
17=item B<-transarc-logs>
18
19Use Transarc style logging features. Rename the log file
20F</usr/afs/logs/VolserLog> to F</usr/afs/logs/VolserLog.old> when the volume server is
21restarted. This option is provided for compatibility with older versions.
22
23=item B<-p> <I<number of processes>>
24
25Sets the number of server lightweight processes (LWPs) to run. Provide an
26integer between C<4> and C<16>. The default is C<9>.
27
28=item B<-auditlog> <I<log path>>
29
30Turns on audit logging, and sets the path for the audit log. The audit
31log records information about RPC calls, including the name of the RPC
32call, the host that submitted the call, the authenticated entity (user)
33that issued the call, the parameters for the call, and if the call
34succeeded or failed.
35
36=item B<-audit-interface> (file | sysvmq)
37
38Specifies what audit interface to use. Defaults to C<file>. See
39L<fileserver(8)> for an explanation of each interface.
40
41=item B<-udpsize> <I<size of socket buffer>>
42
43Sets the size of the UDP buffer in bytes, which is 64 KB by
44default. Provide a positive integer, preferably larger than the default.
45
46=item B<-jumbo>
47
48Allows the server to send and receive jumbograms. A jumbogram is
49a large-size packet composed of 2 to 4 normal Rx data packets that share
50the same header. The volserver does not use jumbograms by default, as some
51routers are not capable of properly breaking the jumbogram into smaller
52packets and reassembling them.
53
54=item B<-nojumbo>
55
56Deprecated; jumbograms are disabled by default.
57
58=item B<-enable_peer_stats>
59
60Activates the collection of Rx statistics and allocates memory for their
61storage. For each connection with a specific UDP port on another machine,
62a separate record is kept for each type of RPC (FetchFile, GetStatus, and
63so on) sent or received. To display or otherwise access the records, use
64the Rx Monitoring API.
65
66=item B<-enable_process_stats>
67
68Activates the collection of Rx statistics and allocates memory for their
69storage. A separate record is kept for each type of RPC (FetchFile,
70GetStatus, and so on) sent or received, aggregated over all connections to
71other machines. To display or otherwise access the records, use the Rx
72Monitoring API.
73
74=item B<-allow-dotted-principals>
75
76By default, the RXKAD security layer will disallow access by Kerberos
77principals with a dot in the first component of their name. This is to avoid
78the confusion where principals user/admin and user.admin are both mapped to the
79user.admin PTS entry. Sites whose Kerberos realms don't have these collisions
80between principal names may disable this check by starting the server
81with this option.
82
83=item B<-clear-vol-stats>
84
85Clear volume access statistics during volume restore and reclone operations.
86This includes clearing the volume access statistics of read-only volumes during
87a volume release. By default, volume access statistics are preserved during
88volume restore and reclone operations.
89
90Volume access statistics were cleared by default in versions prior to OpenAFS
911.8.0. This flag is intended to provide compatible behaviour.
92
93=item B<-sync> <I<sync behavior>>
94
95This is the same as the B<-sync> option in L<fileserver(8)>. See
96L<fileserver(8)>.
97
98=item B<-logfile> <I<log file>>
99
100Sets the file to use for server logging. If logfile is not specified and
101no other logging options are supplied, this will be F</usr/afs/logs/VolserLog>.
102Note that this option is intended for debugging and testing purposes.
103Changing the location of the log file from the command line may result
104in undesirable interactions with tools such as B<bos>.
105
106=item B<-config> <I<configuration directory>>
107
108Set the location of the configuration directory used to configure this
109service. In a typical configuration this will be F</usr/afs/etc> - this
110option allows the use of alternative configuration locations for testing
111purposes.
112
113=item B<-rxmaxmtu> <I<bytes>>
114
115Defines the maximum size of an MTU. The value must be between the
116minimum and maximum packet data sizes for Rx.
117
118=item B<-rxbind>
119
120Bind the Rx socket to the primary interface only. (If not specified, the Rx
121socket will listen on all interfaces.)
122
123=item B<-syslog>[=<I<syslog facility>>]
124
125Specifies that logging output should go to syslog instead of the normal
126log file. B<-syslog>=I<FACILITY> can be used to specify to which facility
127the log message should be sent.
128
129=item B<-sleep> <I<sleep_time>/I<run_time>>
130
131This option is obsolete, and is now only accepted for compatibility with older
132releases. All it does now is log a warning message about how the option is
133obsolete.
134
135=item B<-restricted_query> (anyuser | admin)
136
137Restrict RPCs that query information about volumes to a specific group
138of users. You can use C<admin> to restrict to AFS administrators. The
139C<anyuser> option doesn't restrict the RPCs and leaves it open for all
140users including unauthenticated users, this is the default.
141
142=item B<-s2scrypt> (never | always | inherit)
143
144Set the cryptographic disposition of inter-volserver traffic.
145
146=over 4
147
148=item B<never>
149
150All inter-volserver traffic is unencrypted. This is the default behavior.
151
152=item B<always>
153
154All inter-volserver traffic is encrypted (using rxkad).
155
156=item B<inherit>
157
158Inter-volserver traffic will be encrypted if the client connection triggering
159the server-to-server traffic is encrypted. This has the effect of encrypting
160inter-server traffic if the "-encrypt" option is provided to
161L<B<vos release>|vos_release(1)>, for example.
162
163=back
164
165=item B<-help>
166
167Prints the online help for this command. All other valid options are
168ignored.
169
170=back