02-24-2014 03:52 AM
Why we have World Readable and Writeable permissions on files inside ../netbackup/db/images/ and ../netbackup/db/snapshot/ especially .lck files?
It can be an argument that these are empty zero byte files and removed later but why we need them to be rw-rw-rw whereas rw-rw--- can serve the purpose?
Can we change them to comply with enterprise data security standards and how?
Solved! Go to Solution.
02-24-2014 04:08 AM
Yes, just use chmod o-rw *.lck
I would assume that your umask is not setting these permissions but the code is.
02-24-2014 04:08 AM
Yes, just use chmod o-rw *.lck
I would assume that your umask is not setting these permissions but the code is.
05-21-2014 10:23 AM
05-21-2014 01:45 PM
SJ Hollist makes a very good point. Proper umask setting will help in this regard, otherwise you will be constantly clearing world permissions on newly created files.