2005-12-08 12:14:33 +00:00
|
|
|
=head1 NAME
|
|
|
|
|
2007-11-11 22:54:56 +00:00
|
|
|
vos_create - Creates a read/write volume and associated VLDB entry
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2006-03-01 05:02:29 +00:00
|
|
|
=for html
|
|
|
|
<div class="synopsis">
|
|
|
|
|
2009-10-08 18:31:00 +01:00
|
|
|
B<vos create> S<<< B<-server> <I<machine name>> >>>
|
|
|
|
S<<< B<-partition> <I<partition name>> >>>
|
|
|
|
S<<< B<-name> <I<volume name>> >>>
|
|
|
|
S<<< [B<-maxquota> <I<initial quota (KB)>>] >>>
|
2013-06-20 23:45:05 +01:00
|
|
|
S<<< [B<-id> <I<volume id number>>] >>>
|
|
|
|
S<<< [B<-roid> <I<RO volume id number>>] >>>
|
2009-10-08 18:31:00 +01:00
|
|
|
S<<< [B<-cell> <I<cell name>>] >>>
|
|
|
|
[B<-noauth>] [B<-localauth>] [B<-verbose>]
|
2013-06-20 23:45:05 +01:00
|
|
|
[B<-encrypt>] [B<-noresolve>]
|
|
|
|
S<<< [B<-config> <I<config directory>>] >>>
|
|
|
|
[B<-help>]
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2006-03-01 05:02:29 +00:00
|
|
|
B<vos cr> S<<< B<-s> <I<machine name>> >>> S<<< B<-p> <I<partition name>> >>>
|
2009-07-24 21:38:09 +01:00
|
|
|
S<<< B<-na> <I<volume name>> >>> S<<< [B<-m> <I<initial quota>>] >>>
|
2013-06-20 23:45:05 +01:00
|
|
|
S<<< [B<-i> <I<volume id number>>] >>>
|
|
|
|
S<<< [B<-r> <I<RO volume id number>>] >>>
|
2009-10-08 18:31:00 +01:00
|
|
|
S<<< [B<-c> <I<cell name>>] >>> [B<-noa>] [B<-l>] [B<-v>]
|
2013-06-20 23:45:05 +01:00
|
|
|
[B<-e>] [B<-nor>]
|
|
|
|
S<<< [B<-co> <I<config directory>>] >>>
|
|
|
|
[B<-h>]
|
2006-03-01 05:02:29 +00:00
|
|
|
|
|
|
|
=for html
|
|
|
|
</div>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The B<vos create> command creates a read/write volume with the name
|
|
|
|
specified by the B<-name> argument at the site specified by the B<-server>
|
|
|
|
and B<-partition> arguments. In addition, the command allocates or sets
|
|
|
|
the following:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
Volume ID numbers for the read/write volume and its associated read-only
|
2005-12-09 14:48:56 +00:00
|
|
|
and backup volumes (this command does not actually create the latter two
|
|
|
|
types of volume). A volume ID number is an identification number
|
|
|
|
guaranteed to be unique within a cell.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
An access control list (ACL) associated with the volume's root directory,
|
|
|
|
which takes the same name as volume's mount point when the volume is
|
|
|
|
mounted with the B<fs mkmount> command. An entry that grants all seven
|
|
|
|
permissions to the members of the system:administrators group is
|
|
|
|
automatically placed on the ACL. (In addition, the File Server by default
|
|
|
|
always implicitly grants the C<l> (lookup) and C<a> (administer)
|
|
|
|
permissions on every ACL to members of the system:administrators group,
|
|
|
|
even when the group does not appear on an ACL; use the B<-implicit>
|
|
|
|
argument to the B<fileserver> initialization command to alter the set of
|
|
|
|
rights on a server-by-server basis if desired.)
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The volume's space quota, set to 5000 kilobyte blocks by default. Use the
|
|
|
|
B<-maxquota> argument to specify a different quota, or use the B<fs
|
|
|
|
setquota> command to change the volume's quota after mounting the volume
|
|
|
|
with the B<fs mkmount> command.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The volume is empty when created. To access it via the Cache Manager,
|
|
|
|
mount it in the file space by using the B<fs mkmount> command.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2008-01-20 00:06:49 +00:00
|
|
|
=head1 CAUTIONS
|
|
|
|
|
2012-06-28 21:30:40 +01:00
|
|
|
=include fragments/volsize-caution.pod
|
2008-01-20 00:06:49 +00:00
|
|
|
|
2005-12-08 12:14:33 +00:00
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-server> <I<server name>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Identifies the file server machine on which to create the read/write
|
2005-12-09 14:48:56 +00:00
|
|
|
volume. Provide the machine's IP address or its host name (either fully
|
|
|
|
qualified or using an unambiguous abbreviation). For details, see
|
|
|
|
L<vos(1)>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-partition> <I<partition name>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Identifies the partition on which to create the read/write volume, on the
|
2005-12-09 14:48:56 +00:00
|
|
|
file server machine specified by the B<-server> argument. Provide the
|
|
|
|
partition's complete name with preceding slash (for example, C</vicepa>)
|
|
|
|
or use one of the three acceptable abbreviated forms. For details, see
|
|
|
|
L<vos(1)>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-name> <I<volume name>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Specifies a name for the read/write volume. The maximum length is 22
|
|
|
|
characters, which can include any alphanumeric or punctuation
|
|
|
|
character. By convention, periods separate the fields in a name. Do not
|
|
|
|
apply the C<.backup> or C<.readonly> extension to a read/write volume
|
|
|
|
name; they are reserved for the Volume Server to add to the read/write
|
|
|
|
name when creating those backup and read-only volumes respectively.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2009-07-24 21:38:09 +01:00
|
|
|
=item B<-maxquota> <I<initial quota>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2009-07-24 21:38:09 +01:00
|
|
|
Specifies the maximum amount of disk space the volume can use. The size
|
|
|
|
should be a positive integer followed by an optional suffix: C<K> for
|
|
|
|
kibibytes (1024 bytes, the default), C<M> for mebibytes (1024 kibibytes),
|
|
|
|
C<G> for gibibytes (1024 mebibytes), and C<T> for tebibytes (1024
|
|
|
|
gibibytes). The value C<0> (zero) grants an unlimited quota, but the size
|
|
|
|
of the disk partition that houses the volume places an absolute limit on
|
|
|
|
its size. If this argument is omitted, the default value is C<5000K>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2009-07-06 16:29:20 +01:00
|
|
|
=item B<-id> <I<volume ID>>
|
|
|
|
|
|
|
|
Specifies the volume ID for the read/write volume. If this options is not
|
|
|
|
specified, or the given volume ID is 0, a volume ID will be allocated for
|
|
|
|
the volume automatically. The volume IDs allocated should be fine for
|
|
|
|
almost all cases, so you should almost never need to specify this option.
|
|
|
|
|
|
|
|
=item B<-roid> <I<readonly volume ID>>
|
|
|
|
|
|
|
|
Specifies the volume ID for the readonly volume corresponding to the
|
|
|
|
read/write volume that is being created. The readonly volume will not be
|
|
|
|
created; this merely specifies what volume ID the readonly volume will use
|
|
|
|
when it is created. If a volume ID of 0 is specified here, no readonly
|
|
|
|
volume ID will be assigned to the created volume immediately. A readonly
|
|
|
|
volume ID can still be assigned later when B<vos addsite> is run; if a
|
|
|
|
volume does not have a readonly volume ID associated with it by the time
|
|
|
|
B<vos release> is run, a volume ID will be allocated for it.
|
|
|
|
|
|
|
|
If this option is not specified, the default readonly volume ID is one
|
|
|
|
number higher than the read-write volume ID, whether or not that ID was
|
|
|
|
manually specified.
|
|
|
|
|
|
|
|
As with the B<-id> option, the default allocated volume IDs should be
|
|
|
|
sufficient for almost all cases, so you should almost never need to
|
2009-10-08 18:31:00 +01:00
|
|
|
specify them explicitly. This option is available in OpenAFS
|
|
|
|
versions 1.5.61 or later.
|
2009-07-06 16:29:20 +01:00
|
|
|
|
2013-06-30 03:06:51 +01:00
|
|
|
=include fragments/vos-common.pod
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 OUTPUT
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The Volume Server produces the following message to confirm that it
|
|
|
|
created the volume:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Volume <volume_ID> created on partition <partition_name> of <machine_name>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 EXAMPLES
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The following command creates the read/write volume C<user.pat> on the
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
F</vicepf> partition of the file server machine C<fs4.example.com>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
% vos create -server fs4.example.com -partition /vicepf -name user.pat
|
|
|
|
Volume user.pat created on partition /vicepf of fs4.example.com
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 PRIVILEGE REQUIRED
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The issuer must be listed in the F</usr/afs/etc/UserList> file on the
|
|
|
|
machine specified with the B<-server> argument and on each database server
|
|
|
|
machine. If the B<-localauth> flag is included, the issuer must instead be
|
|
|
|
logged on to a server machine as the local superuser C<root>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
L<vos(1)>
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
IBM Corporation 2000. <http://www.ibm.com/> All Rights Reserved.
|
|
|
|
|
|
|
|
This documentation is covered by the IBM Public License Version 1.0. It was
|
|
|
|
converted from HTML to POD by software written by Chas Williams and Russ
|
|
|
|
Allbery, based on work by Alf Wachsmann and Elizabeth Cassell.
|