Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:services:storage_services:backup:tsm:anleitungen:beispiel-dsm [2015/06/10 11:16] – created trippin1en:services:storage_services:backup:tsm:anleitungen:beispiel-dsm [2015/10/27 15:01] (current) – [Windows] bnachtw
Line 1: Line 1:
 +====== Examples for Configuration FIles ======
  
 +===== Linux / Unix / MacOS =====
 +==== dsm.sys ====
 +<code>
 +
 +SErvername test.tsm.gwdg.de
 +  COMMMethod         TCPip   
 +  TCPServeradress    test.tsm.gwdg.de
 +  TCPPort            2999
 +  
 +  PASSWORDAccess     GENERATE
 +
 +  MANAGEDServices    SCHEDULE
 +
 +  CHAngingretries    2
 +
 +  * some in-/exclude rules
 +  include.encrypt    /etc/.../*
 +  include.encrypt    /home/.../*
 +
 +  exclude.dir        /tmp
 +  exclude.dir        /var
 +
 +  VIRTUALMountpoint  /etc
 +  VIRTUALMountpoint  /home
 +</code>
 +==== dsm.opt ====
 +<code>
 +SERVERName test.tsm.gwdg.de
 +   DOMAIN   /
 +   DOMAIN   /etc
 +   DOMAIN   /home
 +
 +   SUBDIR   Yes
 +   QUIET
 +</code>
 +===== Windows =====
 +
 +==== dsm.opt ====
 +Windows uses only __one__ configurations file //dsm.opt//.
 +<code>
 +SErvername test.tsm.gwdg.de
 +  COMMMethod            TCPip
 +  TCPServeradress       test.tsm.gwdg.de
 +  TCPPort               2999
 +  NODEName              Wintest
 +  
 +  PASSWORDAccess        GENERATE
 +
 +  MANAGEDServices       SCHEDULE
 +
 +  ERRORLOGName          "C:\Program Files\Tivoli\TSM\baclient\dsmerror.log"
 +  ERRORLOGMax           1 G
 +  
 +  SCHEDLOGName          "C:\Program Files\Tivoli\TSM\baclient\dsmsched.log"
 +  SCHEDLOGMax           1 G
 +  
 +  CHAngingretries       2
 +  MEMORYEFficientbackup DISKCACHEMethod
 +  DISKCACHELocation     "D:\TSMCache\"
 +
 +  * some in-/exclude rules
 +  INCLUDE.ENCRYPT       "*:\Users\...\*
 +  
 +  EXCLUDE.DIR           "C:\Windows"
 +  EXCLUDE.DIR           "C:\Program Files"
 +  EXCLUDE.DIR           "C:\Program Files (x86)"
 +  
 +  DOMAIN               "\\WinTest\c$\"
 +</code>