Include/Exclude statements in dsm.sys for backup of domino on linux

haage

ADSM.ORG Member
Joined
Feb 20, 2008
Messages
6
Reaction score
0
Points
0
I'm pretty new to the tsm world and I want to backup the notesdata area on a linux server and the log files, but i don't want to backup any of the system files or unnecessary files inside notesdata, so i've come up with the following include/exclude statements and was hoping that someone here might have some pointers for me on what else i should put in there or what i shouldn't have in the list.

The include/exclude portion of the dsm.sys file is as follows:
exclude /.../*
include /var/log/.../*
include /local/notesdata/.../*
exclude /local/notesdata/.../*.ft/.../*
exclude /local/notesdata/.../*.ft/.../*.*
 
I know nothing about notes but what you have looks right, except with the last 2 lines you don't need to exclude both * and *.* - just exclude *
 
Hi Haage,

EXCLUDE "*"
EXCLUDE "*.*"
EXCLUDE "/.../*"
EXCLUDE "/.../*.*"
INCLUDE "/domino/data/*.*"
INCLUDE "/domino/data/*"
EXCLUDE "*.txn"
EXCLUDE "*.ntf"
EXCLUDE "*.nsf"
EXCLUDE.image "/boot"

This is what we have done in our Mail Server.You please include /var/log to backup the logs.

Aroon
 
Back
Top