]> git.sur5r.net Git - bacula/docs/blob - docs/manual/autochangers.tex
Updates
[bacula/docs] / docs / manual / autochangers.tex
1 %%
2 %%
3
4 \section*{Autochanger Support}
5 \label{_ChapterStart18}
6 \index[general]{Support!Autochanger }
7 \index[general]{Autochanger Support }
8 \addcontentsline{toc}{section}{Autochanger Support}
9
10 \subsection*{Autochangers -- General}
11 \index[general]{General!Autochangers -- }
12 \index[general]{Autochangers -- General }
13 \addcontentsline{toc}{subsection}{Autochangers -- General}
14
15 Bacula provides autochanger support for reading and writing tapes.  In
16 order to work with an autochanger, Bacula requires three things, each of
17 which is explained in more detail after this list:
18
19 \begin{itemize}
20 \item A script that actually controls the autochanger according  to commands
21    sent by Bacula. We furnish such a script  that works with {\bf mtx} found in
22    the {\bf depkgs} distribution.  This script works only with single drive
23    autochangers.  
24 \item That each Volume (tape) to be used must be defined in the  Catalog and
25    have a Slot number assigned  to it so that Bacula knows where the Volume is in
26    the  autochanger. This is generally done with the {\bf label}  command. See
27    below for more details. You must pre-label the tapes manually before
28    using them. 
29 \item Modifications to your Storage daemon's Device configuration  resource to
30    identify that the device is a changer, as well  as a few other parameters.  
31 \item You should also modify your Storage resource definition  in the
32    Director's configuration file so that you are automatically prompted for the
33    Slot when labeling a Volume. 
34 \item You need to ensure that your Storage daemon (if not running as root)
35    has access permissions to both the tape drive and the control device.
36 \item You need to have {\bf Autochanger = yes} in your Storage resource
37    in your bacula-dir.conf file so that you will be prompted for the
38    slot number when you label Volumes.
39 \end{itemize}
40
41 In version 1.37, there is a new \ilink{Autochanger
42 resource}{AutochangerRes} that permits you to group Device resources thus
43 creating a multi-drive autochanger. If you have a multi-drive autochanger,
44 you must use this new resource. If you have a single drive autochanger,
45 it is recommended, but not required.                                 
46
47 Bacula uses its own {\bf mtx-changer} script to interface with a program
48 that actually does the tape changing.  Thus in principle, {\bf mtx-changer}
49 can be adapted to function with any autochanger program.  The current
50 version of {\bf mtx-changer} works with the {\bf mtx} program.  However,
51 FreeBSD users have provided a script in the {\bf examples/autochangers}
52 directory that allows Bacula to use the {\bf chio} program.
53
54 Bacula also supports autochangers with barcode
55 readers. This support includes two Console commands: {\bf label barcodes}
56 and {\bf update slots}. For more details on these commands, see the "Barcode
57 Support" section below. 
58
59 Current Bacula autochanger support does not include cleaning, stackers, or
60 silos.  However, under certain conditions, you may be able to make Bacula
61 work with stackers (gravity feed and such).  Support for multi-drive
62 autochangers requires the \ilink{Autochanger resource}{AutochangerRes}
63 introduced in version 1.37.  This resource is also recommended for single
64 drive autochangers.
65
66 In principle, if {\bf mtx} will operate your changer correctly, then it is
67 just a question of adapting the {\bf mtx-changer} script (or selecting one
68 already adapted) for proper interfacing. You can find a list of autochangers
69 supported by {\bf mtx} at the following link: 
70 \elink{http://mtx.badtux.net/compatibility.php}
71 {http://mtx.badtux.net/compatibility.php}.
72 The home page for the {\bf mtx} project can be found at: 
73 \elink{http://mtx.badtux.net/}{http://mtx.badtux.net/}. 
74
75 If you are having troubles, please use the {\bf auto} command in the {\bf
76 btape} program to test the functioning of your autochanger with Bacula. When
77 Bacula is running, please remember that for many distributions (e.g. FreeBSD,
78 Debian, ...) the Storage daemon runs as {\bf bacula.tape} rather than {\bf
79 root.root}, so you will need to ensure that the Storage daemon has sufficient
80 permissions to access the autochanger. 
81
82 \label{SCSI devices}
83 \subsection*{Knowing What SCSI Devices You Have}
84 \index[general]{Have!Knowing What SCSI Devices You }
85 \index[general]{Knowing What SCSI Devices You Have }
86 \index[general]{SCSI devices}
87 \index[general]{devices!SCSI}
88 \addcontentsline{toc}{subsection}{Knowing What SCSI Devices You Have}
89
90 Under Linux, you can 
91
92 \footnotesize
93 \begin{verbatim}
94 cat /proc/scsi/scsi
95 \end{verbatim}
96 \normalsize
97
98 to see what SCSI devices you have available. You can also: 
99
100 \footnotesize
101 \begin{verbatim}
102 cat /proc/scsi/sg/device_hdr /proc/scsi/sg/devices
103 \end{verbatim}
104 \normalsize
105
106 to find out how to specify their control address ({\bf /dev/sg0} for the
107 first, {\bf /dev/sg1} for the second, ...) on the {\bf Changer Device = }
108 Bacula directive. 
109
110 Under FreeBSD, you can use: 
111
112 \footnotesize
113 \begin{verbatim}
114 camcontrol devlist
115 \end{verbatim}
116 \normalsize
117
118 To list the SCSI devices as well as the {\bf /dev/passn} that you will use on
119 the Bacula {\bf Changer Device = } directive. 
120
121 Please check that your Storage daemon has permission to access this
122 device.
123
124 The following tip for FreeBSD users comes from Danny Butroyd:
125 n reboot bacula will NOT have permissions to 
126 control the device /dev/pass0 (assuming this is your changer device).  
127 To get around this just edit the /etc/devfs.conf file and add the 
128 following to the bottom of the config file:
129 \footnotesize
130 \begin{verbatim}
131 own     pass0   root:bacula
132 perm    pass0   0666
133 own     nsa0.0  root:bacula
134 perm    nsa0.0    0666
135 \end{verbatim}
136 \normalsize
137 I have given the bacula group permission to write to the nsa0.0 device 
138 too just to be on the safe side.   To bring these changes into effect 
139 just run:-
140
141 /etc/rc.d/devfs restart
142
143 Basically this will stop you having to change permissions on these 
144 devices to make bacula work when operating the AutoChanger after a reboot.
145
146 \label{scripts}
147
148 \subsection*{Example Scripts}
149 \index[general]{Scripts!Example }
150 \index[general]{Example Scripts }
151 \addcontentsline{toc}{subsection}{Example Scripts}
152
153 Please read the sections below so that you understand how autochangers work
154 with Bacula. Although we supply a default {\bf mtx-changer} script, your
155 autochanger may require some additional changes. If you want to see examples
156 of configuration files and scripts, please look in the {\bf
157 \lt{}bacula-src\gt{}/examples/devices} directory where you will find an
158 example {\bf HP-autoloader.conf} Bacula Device resource, and several {\bf
159 mtx-changer} scripts that have been modified to work with different
160 autochangers. 
161
162 \label{Slots}
163
164 \subsection*{Slots}
165 \index[general]{Slots }
166 \addcontentsline{toc}{subsection}{Slots}
167
168 To properly address autochangers, Bacula must know which Volume is in each
169 {\bf slot} of the autochanger. Slots are where the changer cartridges reside
170 when not loaded into the drive. Bacula numbers these slots from one to the
171 number of cartridges contained in the autochanger. 
172
173 Bacula will not automatically use a Volume in your autochanger unless it is
174 labeled and the slot number is stored in the catalog and the Volume is marked
175 as InChanger. For each Volume in your
176 changer, you will, using the Console program, assign a slot. This information
177 is kept in {\bf Bacula's} catalog database along with the other data for the
178 volume. If no slot is given, or the slot is set to zero, Bacula will not
179 attempt to use the autochanger even if all the necessary configuration records
180 are present. In addition, the console {\bf mount} command does not cause
181 Bacula to operate the autochanger, it only tells Bacula to read any tape that
182 may be in the drive. 
183
184 You can check if the Slot number and InChanger flag are set by doing a:
185 \begin{verbatim}
186 list Volumes
187 \end{verbatim}
188
189 in the Console program.
190
191 \label{mult}
192 \subsection*{Multiple Devices}
193 \index[general]{Devices!Multiple }
194 \index[general]{Multiple Devices }
195 \addcontentsline{toc}{subsection}{Multiple Devices}
196
197 Some autochangers have more than one read/write device (drive). The
198 new 
199 \ilink{Autochanger resource}{AutochangerRes} introduced in version
200 1.37 permits you to group Device resources, where each device 
201 represents a drive. The Director may still reference the Devices (drives)
202 directly, but doing so, bypasses the proper functioning of the
203 drives together.  Instead, the Director (in the Storage resource)
204 should reference the Autochanger resource name. Doing so permits 
205 the Storage daemon to ensure that only one drive uses the mtx-changer
206 script at a time, and also that two drives don't reference the
207 same Volume.
208
209 Multi-drive requires the use of the {\bf
210 Drive Index} directive in the Device resource of the Storage daemon's
211 configuration file. Drive numbers or the Device Index are numbered beginning
212 at zero, which is the default. To use the second Drive in an autochanger, you
213 need to define a second Device resource and set the Drive Index to 1 for
214 that device. In general, the second device will have the same {\bf Changer
215 Device} (control channel) as the first drive, but a different {\bf Archive
216 Device}. 
217
218 \label{ConfigRecords}
219 \subsection*{Device Configuration Records}
220 \index[general]{Records!Device Configuration }
221 \index[general]{Device Configuration Records }
222 \addcontentsline{toc}{subsection}{Device Configuration Records}
223
224 Configuration of autochangers within Bacula is done in the Device resource of
225 the Storage daemon. Four records: {\bf Autochanger}, {\bf Changer Device},
226 {\bf Changer Command}, and {\bf Maximum Changer Wait} control how Bacula uses
227 the autochanger. 
228
229 These four records, permitted in {\bf Device} resources, are described in
230 detail below. Note, however, that the {\bf Changer Device} and the 
231 {\bf Changer Command} directives are not needed in the Device resource
232 if they are present in the {\bf Autochanger} resource.
233
234 \begin{description}
235
236 \item [Autochanger = {\it Yes|No} ]
237    \index[sd]{Autochanger  }
238    The {\bf Autochanger} record specifies that the current device  is or is not
239 an autochanger. The default is {\bf no}.  
240
241 \item [Changer Device = \lt{}device-name\gt{}]
242    \index[sd]{Changer Device  }
243    In addition to the Archive Device name, you must specify a  {\bf Changer
244 Device} name. This is because most autochangers are  controlled through a
245 different device than is used for reading and  writing the cartridges. For
246 example, on Linux, one normally uses the generic SCSI interface for
247 controlling the autochanger, but the standard SCSI interface for reading and
248 writing the  tapes. On Linux, for the {\bf Archive Device = /dev/nst0},  you
249 would typically have {\bf Changer Device = /dev/sg0}.  Note, some of the more
250 advanced autochangers will locate the changer device on {\bf /dev/sg1}. Such
251 devices typically have  several drives and a large number of tapes.  
252
253 On FreeBSD systems, the changer device will typically be on {\bf /dev/pass0}
254 through {\bf /dev/passn}.  
255
256 On Solaris, the changer device will typically be some file under {\bf
257 /dev/rdsk}.  
258
259 Please ensure that your Storage daemon has permission to access this
260 device.
261
262 \item [Changer Command = \lt{}command\gt{}]
263    \index[sd]{Changer Command  }
264    This record is used to specify the external program to call  and what
265 arguments to pass to it. The command is assumed to be  a standard program or
266 shell script that can be executed by  the operating system. This command is
267 invoked each time that Bacula wishes to manipulate the autochanger.  The
268 following substitutions are made in the {\bf command}  before it is sent to
269 the operating system for execution:  
270
271 \footnotesize
272 \begin{verbatim}
273       %% = %
274       %a = archive device name
275       %c = changer device name
276       %d = changer drive index base 0
277       %f = Client's name
278       %j = Job name
279       %o = command  (loaded, load, or unload)
280       %s = Slot base 0
281       %S = Slot base 1
282       %v = Volume name
283 \end{verbatim}
284 \normalsize
285
286 An actual example for using {\bf mtx} with the  {\bf mtx-changer} script (part
287 of the Bacula distribution) is:  
288
289 \footnotesize
290 \begin{verbatim}
291 Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
292 \end{verbatim}
293 \normalsize
294
295 Where you will need to adapt the {\bf /etc/bacula} to be  the actual path on
296 your system where the mtx-changer script  resides.  Details of the three
297 commands currently used by Bacula  (loaded, load, unload) as well as the
298 output expected by  Bacula are give in the {\bf Bacula Autochanger Interface} 
299 section below.  
300
301 \item [Maximum Changer Wait = \lt{}time\gt{}]
302    \index[sd]{Maximum Changer Wait  }
303    This record is used to define the maximum amount of time that Bacula
304    will wait for an autoloader to respond to a command (e.g.  load).  The
305    default is set to 120 seconds.  If you have a slow autoloader you may
306    want to set it longer.
307
308 If the autoloader program fails to respond in this time, it  will be killed
309 and Bacula will request operator intervention.  
310
311 \item [Drive Index = \lt{}number\gt{}]
312    \index[sd]{Drive Index  }
313    This record allows you to tell Bacula to use the second or subsequent
314    drive in an autochanger with multiple drives.  Since the drives are
315    numbered from zero, the second drive is defined by
316
317 \footnotesize
318 \begin{verbatim}
319 Device Index = 1
320       
321 \end{verbatim}
322 \normalsize
323
324 To use the second drive, you need a second Device resource definition  in the
325 Bacula configuration file. See the Multiple Drive section above  in this
326 chapter for more information. 
327 \end{description}
328
329 In addition, for proper functioning of the Autochanger, you must 
330 define an Autochanger resource.
331 \input{autochangerres}
332
333 \label{example}
334 \subsection*{An Example Configuration File}
335 \index[general]{Example Configuration File }
336 \index[general]{File!Example Configuration }
337 \addcontentsline{toc}{subsection}{Example Configuration File}
338
339 The following two resources implement an autochanger: 
340
341 \footnotesize
342 \begin{verbatim}
343 Autochanger {
344   Name = "Autochanger"
345   Device = DDS-4
346   Changer Device = /dev/sg0
347   Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
348 }
349
350 Device {
351   Name = DDS-4
352   Media Type = DDS-4
353   Archive Device = /dev/nst0    # Normal archive device
354   Autochanger = yes
355   LabelMedia = no;
356   AutomaticMount = yes;
357   AlwaysOpen = yes;
358   Mount Anonymous Volumes = no;
359 }
360 \end{verbatim}
361 \normalsize
362
363 where you will adapt the {\bf Archive Device}, the {\bf Changer Device}, and
364 the path to the {\bf Changer Command} to correspond to the values used on your
365 system. 
366
367 \subsection*{A Multi-drive Example Configuration File}
368 \index[general]{Multi-drive Example Configuration File }
369 \addcontentsline{toc}{subsection}{A Multi-drive Example Configuration File}
370
371 The following resources implement a multi-drive autochanger: 
372
373 \footnotesize
374 \begin{verbatim}
375 Autochanger {
376   Name = "Autochanger"
377   Device = Drive-1, Drive-2
378   Changer Device = /dev/sg0
379   Changer Command = "/etc/bacula/mtx-changer %c %o %S %a %d"
380 }
381
382 Device {
383   Name = Drive-1
384   Drive Index = 0
385   Media Type = DDS-4
386   Archive Device = /dev/nst0    # Normal archive device
387   Autochanger = yes
388   LabelMedia = no;
389   AutomaticMount = yes;
390   AlwaysOpen = yes;
391   Mount Anonymous Volumes = no;
392 }
393
394 Device {
395   Name = Drive-2
396   Drive Index = 1
397   Media Type = DDS-4
398   Archive Device = /dev/nst1    # Normal archive device
399   Autochanger = yes
400   LabelMedia = no;
401   AutomaticMount = yes;
402   AlwaysOpen = yes;
403   Mount Anonymous Volumes = no;
404 }
405
406 \end{verbatim}
407 \normalsize
408
409 where you will adapt the {\bf Archive Device}, the {\bf Changer Device}, and
410 the path to the {\bf Changer Command} to correspond to the values used on your
411 system. 
412
413 \label{SpecifyingSlots}
414 \subsection*{Specifying Slots When Labeling}
415 \index[general]{Specifying Slots When Labeling }
416 \index[general]{Labeling!Specifying Slots When }
417 \addcontentsline{toc}{subsection}{Specifying Slots When Labeling}
418
419 If you add an {\bf Autochanger = yes} record to the Storage resource in your
420 Director's configuration file, the Bacula Console will automatically prompt
421 you for the slot number when the Volume is in the changer when
422 you {\bf add} or {\bf label} tapes for that Storage device. If your
423 {\bf mtx-changer} script is properly installed, Bacula will automatically
424 load the correct tape during the label command.
425   
426 You must also set
427 {\bf Autochanger = yes} in the Storage daemon's Device resource                
428 as we have described above in
429 order for the autochanger to be used. Please see the 
430 \ilink{Storage Resource}{Autochanger1} in the Director's chapter
431 and the 
432 \ilink{Device Resource}{Autochanger} in the Storage daemon
433 chapter for more details on these records. 
434
435 Thus all stages of dealing with tapes can be totally automated. It is also
436 possible to set or change the Slot using the {\bf update} command in the
437 Console and selecting {\bf Volume Parameters} to update. 
438
439 Even though all the above configuration statements are specified and correct,
440 Bacula will attempt to access the autochanger only if a {\bf slot} is non-zero
441 in the catalog Volume record (with the Volume name). 
442
443 If your autochanger has barcode labels, you can label all the Volumes in
444 your autochanger one after another by using the {\bf label barcodes} command.
445 For each tape in the changer containing a barcode, Bacula will mount the tape
446 and then label it with the same name as the barcode. An appropriate Media
447 record will also be created in the catalog. Any barcode that begins with the
448 same characters as specified on the "CleaningPrefix=xxx" command, will be
449 treated as a cleaning tape, and will not be labeled. For example with: 
450
451 Please note that Volumes must be pre-labeled to be automatically used in
452 the autochanger during a backup.  If you do not have a barcode reader, this
453 is done manually (or via a script).
454
455 \footnotesize
456 \begin{verbatim}
457 Pool {
458   Name ...
459   Cleaning Prefix = "CLN"
460 }
461 \end{verbatim}
462 \normalsize
463
464 Any slot containing a barcode of CLNxxxx will be treated as a cleaning tape
465 and will not be mounted.
466
467 \label{Magazines}
468 \subsection*{Dealing with Multiple Magazines}
469 \index[general]{Dealing with Multiple Magazines }
470 \index[general]{Magazines!Dealing with Multiple }
471 \addcontentsline{toc}{subsection}{Dealing with Multiple Magazines}
472
473 If you have several magazines or if you insert or remove cartridges from a
474 magazine, you should notify Bacula of this. By doing so, Bacula will as
475 a preference, use Volumes that it knows to be in the autochanger before
476 accessing Volumes that are not in the autochanger. This prevents unneeded
477 operator intervention. 
478
479 If your autochanger has barcodes (machine readable tape labels), the task of
480 informing Bacula is simple. Every time, you change a magazine, or add or
481 remove a cartridge from the magazine, simply do 
482
483 \footnotesize
484 \begin{verbatim}
485 unmount
486 (remove magazine)
487 (insert new magazine)
488 update slots
489 mount
490 \end{verbatim}
491 \normalsize
492
493 in the Console program. This will cause Bacula to request the autochanger to
494 return the current Volume names in the magazine. This will be done without
495 actually accessing or reading the Volumes because the barcode reader does this
496 during inventory when the autochanger is first turned on. Bacula will ensure
497 that any Volumes that are currently marked as being in the magazine are marked
498 as no longer in the magazine, and the new list of Volumes will be marked as
499 being in the magazine. In addition, the Slot numbers of the Volumes will be
500 corrected in Bacula's catalog if they are incorrect (added or moved). 
501
502 If you do not have a barcode reader on your autochanger, you have several
503 alternatives. 
504
505 \begin{enumerate}
506 \item You can manually set the Slot and InChanger flag using  the {\bf update
507    volume} command in the Console (quite  painful). 
508
509 \item You can issue a 
510
511 \footnotesize
512 \begin{verbatim}
513 update slots scan
514 \end{verbatim}
515 \normalsize
516
517    command that will cause Bacula to read the label on each  of the cartridges in
518    the magazine in turn and update the  information (Slot, InChanger flag) in the
519    catalog. This  is quite effective but does take time to load each cartridge 
520    into the drive in turn and read the Volume label.  
521
522 \item You can modify the mtx-changer script so that it simulates  an
523    autochanger with barcodes. See below for more details. 
524 \end{enumerate}
525
526 \label{simulating}
527 \subsection*{Simulating Barcodes in your Autochanger}
528 \index[general]{Autochanger!Simulating Barcodes in your }
529 \index[general]{Simulating Barcodes in your Autochanger }
530 \addcontentsline{toc}{subsection}{Simulating Barcodes in your Autochanger}
531
532 You can simulate barcodes in your autochanger by making the {\bf mtx-changer}
533 script return the same information that an autochanger with barcodes would do.
534 This is done by commenting out the one and only line in the {\bf list)} case,
535 which is: 
536
537 \footnotesize
538 \begin{verbatim}
539   ${MTX} -f $ctl status | grep " *Storage Element [0-9]*:.*Full" | awk "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
540 \end{verbatim}
541 \normalsize
542
543 at approximately line 99 by putting a \# in column one of that line, or by
544 simply deleting it. Then in its place add a new line that prints the contents
545 of a file. For example: 
546
547 \footnotesize
548 \begin{verbatim}
549 cat /etc/bacula/changer.volumes
550 \end{verbatim}
551 \normalsize
552
553 Be sure to include a full path to the file, which can have any name. The
554 contents of the file must be of the following format: 
555
556 \footnotesize
557 \begin{verbatim}
558 1:Volume1
559 2:Volume2
560 3:Volume3
561 ...
562 \end{verbatim}
563 \normalsize
564
565 Where the 1, 2, 3 are the slot numbers and Volume1, Volume2, ... are the
566 Volume names in those slots. You can have multiple files that represent the
567 Volumes in different magazines, and when you change magazines, simply copy the
568 contents of the correct file into your {\bf /etc/bacula/changer.volumes} file.
569 There is no need to stop and start Bacula when you change magazines, simply
570 put the correct data in the file, then run the {\bf update slots} command, and
571 your autochanger will appear to Bacula to be an autochanger with barcodes. 
572 \label{updateslots}
573
574 \subsection*{The Full Form of the Update Slots Command}
575 \index[general]{Full Form of the Update Slots Command }
576 \index[general]{Command!Full Form of the Update Slots }
577 \addcontentsline{toc}{subsection}{Full Form of the Update Slots Command}
578
579 If you change only one cartridge in the magazine, you may not want to scan all
580 Volumes, so the {\bf update slots} command (as well as the {\bf update slots
581 scan} command) has the additional form: 
582
583 \footnotesize
584 \begin{verbatim}
585 update slots=n1,n2,n3-n4, ...
586 \end{verbatim}
587 \normalsize
588
589 where the keyword {\bf scan} can be appended or not. The n1,n2, ... represent
590 Slot numbers to be updated and the form n3-n4 represents a range of Slot
591 numbers to be updated (e.g. 4-7 will update Slots 4,5,6, and 7). 
592
593 This form is particularly useful if you want to do a scan (time expensive) and
594 restrict the update to one or two slots. 
595
596 For example, the command: 
597
598 \footnotesize
599 \begin{verbatim}
600 update slots=1,6 scan
601 \end{verbatim}
602 \normalsize
603
604 will cause Bacula to load the Volume in Slot 1, read its Volume label and
605 update the Catalog. It will do the same for the Volume in Slot 6. The command:
606
607
608 \footnotesize
609 \begin{verbatim}
610 update slots=1-3,6
611 \end{verbatim}
612 \normalsize
613
614 will read the barcoded Volume names for slots 1,2,3 and 6 and make the
615 appropriate updates in the Catalog. If you don't have a barcode reader or have
616 not modified the mtx-changer script as described above, the above command will
617 not find any Volume names so will do nothing. 
618 \label{FreeBSD}
619
620 \subsection*{FreeBSD Issues}
621 \index[general]{Issues!FreeBSD }
622 \index[general]{FreeBSD Issues }
623 \addcontentsline{toc}{subsection}{FreeBSD Issues}
624
625 If you are having problems on FreeBSD when Bacula tries to select a tape, and
626 the message is {\bf Device not configured}, this is because FreeBSD has made
627 the tape device {\bf /dev/nsa1} disappear when there is no tape mounted in the
628 autochanger slot. As a consequence, Bacula is unable to open the device. The
629 solution to the problem is to make sure that some tape is loaded into the tape
630 drive before starting Bacula. This problem is corrected in Bacula versions
631 1.32f-5 and later. 
632
633 Please see the 
634 \ilink{ Tape Testing}{FreeBSDTapes} chapter of this manual for
635 {\bf important} information concerning your tape drive before doing the
636 autochanger testing. 
637 \label{AutochangerTesting}
638
639 \subsection*{Testing the Autochanger and Adapting Your mtx-changer Script}
640 \index[general]{Testing the Autochanger and Adapting Your mtx-changer Script }
641 \index[general]{Script!Testing the Autochanger and Adapting Your mtx-changer }
642 \addcontentsline{toc}{subsection}{Testing the Autochanger and Adapting Your
643 mtx-changer Script}
644
645 Before attempting to use the autochanger with Bacula, it is preferable to
646 "hand-test" that the changer works. To do so, we suggest you do the
647 following commands (assuming that the {\bf mtx-changer} script is installed in
648 {\bf /etc/bacula/mtx-changer}): 
649
650 \begin{description}
651
652 \item [Make sure Bacula is not running.]
653
654 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ list \ 0 \ /dev/nst0 \ 0]
655 \index[sd]{mtx-changer list}
656
657 This command should print:  
658
659 \footnotesize
660 \begin{verbatim}
661    1:
662    2:
663    3:
664    ...
665    
666 \end{verbatim}
667 \normalsize
668
669 or one number per line for each slot that is  occupied in your changer, and
670 the number should be  terminated by a colon ({\bf :}). If your changer has 
671 barcodes, the barcode will follow the colon.  If an error message is printed,
672 you must resolve the  problem (e.g. try a different SCSI control device name
673 if {\bf /dev/sg0}  is incorrect. For example, on FreeBSD systems, the
674 autochanger  SCSI control device is generally {\bf /dev/pass2}.  
675
676 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ slots \ 0 \ /dev/nst0 \ 0]
677 \index[sd]{mtx-changer slots}
678
679 This command should return the number of slots in your autochanger.  
680
681 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ unload \ ]
682 \index[sd]{mtx-changer unload}
683
684    If a tape is loaded, this should cause  it to be unloaded.  
685
686 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ load \ 3 \ /dev/nst0 \ 0 ]
687 \index[sd]{mtx-changer load}
688
689 Assuming you have a tape in slot 3,  it will be loaded into the read slot (0).
690  
691
692 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ loaded \ 0 \ /dev/nst0 \ 0]
693 \index[sd]{mtx-changer loaded}
694
695 It should print "3"  
696
697 \item [/etc/bacula/mtx-changer \ /dev/sg0 \ unload]
698 \end{description}
699
700 Once all the above commands work correctly, assuming that you have the right
701 {\bf Changer Command} in your configuration, Bacula should be able to operate
702 the changer. The only remaining area of problems will be if your autoloader
703 needs some time to get the tape loaded after issuing the command. After the
704 {\bf mtx-changer} script returns, Bacula will immediately rewind and read the
705 tape. If Bacula gets rewind I/O errors after a tape change, you will probably
706 need to insert a {\bf sleep 20} after the {\bf mtx} command, but be careful to
707 exit the script with a zero status by adding {\bf exit 0} after any additional
708 commands you add to the script. This is because Bacula checks the return
709 status of the script, which should be zero if all went well. 
710
711 You can test whether or not you need a {\bf sleep} by putting the following
712 commands into a file and running it as a script: 
713
714 \footnotesize
715 \begin{verbatim}
716 #!/bin/sh
717 /etc/bacula/mtx-changer /dev/sg0 unload
718 /etc/bacula/mtx-changer /dev/sg0 load 3
719 mt -f /dev/st0 rewind
720 mt -f /dev/st0 weof
721 \end{verbatim}
722 \normalsize
723
724 If the above script runs, you probably have no timing problems. If it does not
725 run, start by putting a {\bf sleep 30} or possibly a {\bf sleep 60} in the 
726 script just after the mtx-changer load command. If that works, then you should
727 move the sleep into the actual {\bf mtx-changer} script so that it will be
728 effective when Bacula runs. 
729
730 A second problem that comes up with a small number of autochangers is that
731 they need to have the cartridge ejected before it can be removed. If this is
732 the case, the {\bf load 3} will never succeed regardless of how long you wait.
733 If this seems to be your problem, you can insert an eject just after the
734 unload so that the script looks like: 
735
736 \footnotesize
737 \begin{verbatim}
738 #!/bin/sh
739 /etc/bacula/mtx-changer /dev/sg0 unload
740 mt -f /dev/st0 offline
741 /etc/bacula/mtx-changer /dev/sg0 load 3
742 mt -f /dev/st0 rewind
743 mt -f /dev/st0 weof
744 \end{verbatim}
745 \normalsize
746
747 Obviously, if you need the {\bf offline} command, you should move it into the
748 mtx-changer script ensuring that you save the status of the {\bf mtx} command
749 or always force an {\bf exit 0} from the script, because Bacula checks the
750 return status of the script. 
751
752 As noted earlier, there are several scripts in {\bf
753 \lt{}bacula-source\gt{}/examples/devices} that implement the above features,
754 so they may be a help to you in getting your script to work. 
755
756 If Bacula complains "Rewind error on /dev/nst0. ERR=Input/output error." you
757 most likely need more sleep time in your {\bf mtx-changer} before returning to
758 Bacula after a load command has been completed.
759
760 \label{using}
761
762 \subsection*{Using the Autochanger}
763 \index[general]{Using the Autochanger }
764 \index[general]{Autochanger!Using the }
765 \addcontentsline{toc}{subsection}{Using the Autochanger}
766
767 Let's assume that you have properly defined the necessary Storage daemon
768 Device records, and you have added the {\bf Autochanger = yes} record to the
769 Storage resource in your Director's configuration file. 
770
771 Now you fill your autochanger with say six blank tapes. 
772
773 What do you do to make Bacula access those tapes? 
774
775 One strategy is to prelabel each of the tapes. Do so by starting Bacula, then
776 with the Console program, enter the {\bf label} command: 
777
778 \footnotesize
779 \begin{verbatim}
780 ./console
781 Connecting to Director rufus:8101
782 1000 OK: rufus-dir Version: 1.26 (4 October 2002)
783 *label
784 \end{verbatim}
785 \normalsize
786
787 it will then print something like: 
788
789 \footnotesize
790 \begin{verbatim}
791 Using default Catalog name=BackupDB DB=bacula
792 The defined Storage resources are:
793      1: Autochanger
794      2: File
795 Select Storage resource (1-2): 1
796 \end{verbatim}
797 \normalsize
798
799 I select the autochanger (1), and it prints: 
800
801 \footnotesize
802 \begin{verbatim}
803 Enter new Volume name: TestVolume1
804 Enter slot (0 for none): 1
805 \end{verbatim}
806 \normalsize
807
808 where I entered {\bf TestVolume1} for the tape name, and slot {\bf 1} for the
809 slot. It then asks: 
810
811 \footnotesize
812 \begin{verbatim}
813 Defined Pools:
814      1: Default
815      2: File
816 Select the Pool (1-2): 1
817 \end{verbatim}
818 \normalsize
819
820 I select the Default pool. This will be automatically done if you only have a
821 single pool, then Bacula will proceed to unload any loaded volume, load the
822 volume in slot 1 and label it. In this example, nothing was in the drive, so
823 it printed: 
824
825 \footnotesize
826 \begin{verbatim}
827 Connecting to Storage daemon Autochanger at localhost:9103 ...
828 Sending label command ...
829 3903 Issuing autochanger "load slot 1" command.
830 3000 OK label. Volume=TestVolume1 Device=/dev/nst0
831 Media record for Volume=TestVolume1 successfully created.
832 Requesting mount Autochanger ...
833 3001 Device /dev/nst0 is mounted with Volume TestVolume1
834 You have messages.
835 *
836 \end{verbatim}
837 \normalsize
838
839 You may then proceed to label the other volumes. The messages will change
840 slightly because Bacula will unload the volume (just labeled TestVolume1)
841 before loading the next volume to be labeled. 
842
843 Once all your Volumes are labeled, Bacula will automatically load them as they
844 are needed. 
845
846 To "see" how you have labeled your Volumes, simply enter the {\bf list
847 volumes} command from the Console program, which should print something like
848 the following: 
849
850 \footnotesize
851 \begin{verbatim}
852 *{\bf list volumes}
853 Using default Catalog name=BackupDB DB=bacula
854 Defined Pools:
855      1: Default
856      2: File
857 Select the Pool (1-2): 1
858 +-------+----------+--------+---------+-------+--------+----------+-------+------+
859 | MedId | VolName  | MedTyp | VolStat | Bites | LstWrt | VolReten | Recyc | Slot |
860 +-------+----------+--------+---------+-------+--------+----------+-------+------+
861 | 1     | TestVol1 | DDS-4  | Append  | 0     | 0      | 30672000 | 0     | 1    |
862 | 2     | TestVol2 | DDS-4  | Append  | 0     | 0      | 30672000 | 0     | 2    |
863 | 3     | TestVol3 | DDS-4  | Append  | 0     | 0      | 30672000 | 0     | 3    |
864 | ...                                                                            |
865 +-------+----------+--------+---------+-------+--------+----------+-------+------+
866 \end{verbatim}
867 \normalsize
868
869 \label{Barcodes}
870
871 \subsection*{Barcode Support}
872 \index[general]{Support!Barcode }
873 \index[general]{Barcode Support }
874 \addcontentsline{toc}{subsection}{Barcode Support}
875
876 Bacula provides barcode support with two Console commands, {\bf label
877 barcodes} and {\bf update slots}.
878
879 The {\bf label barcodes} will cause Bacula to read the barcodes of all the
880 cassettes that are currently installed in the magazine (cassette holder) using
881 the {\bf mtx-changer} {\bf list} command. Each cassette is mounted in turn and
882 labeled with the same Volume name as the barcode. 
883
884 The {\bf update slots} command will first obtain the list of cassettes and
885 their barcodes from {\bf mtx-changer}. Then it will find each volume in turn
886 in the catalog database corresponding to the barcodes and set its Slot to
887 correspond to the value just read. If the Volume is not in the catalog, then
888 nothing will be done. This command is useful for synchronizing Bacula with the
889 current magazine in case you have changed magazines or in case you have moved
890 cassettes from one slot to another.
891
892 The {\bf Cleaning Prefix} statement can be used in the Pool resource to define
893 a Volume name prefix, which if it matches that of the Volume (barcode) will
894 cause that Volume to be marked with a VolStatus of {\bf Cleaning}. This will
895 prevent Bacula from attempting to write on the Volume.
896
897 \label{interface}
898
899 \subsection*{Bacula Autochanger Interface}
900 \index[general]{Interface!Bacula Autochanger }
901 \index[general]{Bacula Autochanger Interface }
902 \addcontentsline{toc}{subsection}{Bacula Autochanger Interface}
903
904 Bacula calls the autochanger script that you specify on the {\bf Changer
905 Device} statement. Normally this script will be the {\bf mtx-changer} script
906 that we can provide, but it can in fact be any program. The only requirements
907 are that the "commands" that Bacula uses are {\bf loaded}, {\bf load}, {\bf
908 unload}, {\bf list}, and {\bf slots}. In addition,
909 each of those commands must return the information in the precise format as
910 specified below: 
911
912 \footnotesize
913 \begin{verbatim}
914 - Currently the changer commands used are:
915     loaded -- returns number of the slot that is loaded, base 1,
916               in the drive or 0 if the drive is empty.
917     load   -- loads a specified slot (note, some autochangers
918               require a 30 second pause after this command) into
919               the drive.
920     unload -- unloads the device (returns cassette to its slot).
921     list   -- returns one line for each cassette in the autochanger
922               in the format <slot>:<barcode>. Where
923               the {\bf slot} is the non-zero integer representing
924               the slot number, and {\bf barcode} is the barcode
925               associated with the cassette if it exists and if you
926               autoloader supports barcodes. Otherwise the barcode
927               field is blank.
928     slots  -- returns total number of slots in the autochanger.
929 \end{verbatim}
930 \normalsize
931
932 Bacula checks the exit status of the program called, and if it is zero, the
933 data is accepted. If the exit status is non-zero, Bacula ignores any
934 information returned and treats the drive as if it is not an autochanger.