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