Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:services:storage_services:backup:tsm:anleitungen:scheduler-linux [2024/06/21 12:48] – jbruene | en:services:storage_services:backup:tsm:anleitungen:scheduler-linux [2025/01/13 10:23] (current) – sklemer | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Start of the TSM-Scheduler (Linux) ====== | ||
+ | In all Linux distributions, | ||
+ | |||
+ | IBM [[https:// | ||
+ | |||
+ | < | ||
+ | # systemctl start dsmcad.service | ||
+ | </ | ||
+ | |||
+ | Afterwards | ||
+ | |||
+ | < | ||
+ | # systemctl status dsmcad.service | ||
+ | </ | ||
+ | |||
+ | should report a successful start. Otherwise the missing file '' | ||
+ | |||
+ | < | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | and try restarting dsmcad.service. | ||
+ | |||
+ | ====== Automatic start of dsmcad ====== | ||
+ | |||
+ | Activation of '' | ||
+ | |||
+ | < | ||
+ | # systemctl enable --now dsmcad.service | ||
+ | </ | ||
+ | < | ||
+ | |||
+ | </ | ||
+ | |||
+ | In older Suse and RedHat distributions use: | ||
+ | |||
+ | < | ||
+ | # chkconfig --add dsmcad | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | </ | ||
+ | //chkconfig --add dsmcad// does not work in older Ubuntu und Debian versions lacking Systemd, since these do not contain '' | ||
+ | |||
+ | Use the following on such systems, instead: | ||
+ | < | ||
+ | chmod a+x / | ||
+ | update-rc.d dsmcad defaults 35 35 | ||
+ | </ |