20.6 files AND DATA
Integrity of the files and data is very important to the success of an OpenView system management environment. It is recommended that frequent backups be performed of the OVO runtime and configuration data. The Oracle database provides data protection via passwords and restrictions on data access. Periodic audits of the file system reduce the risk of data security vulnerabilities. One way to check for files and directories with open permissions is with the find command, as shown in the following examples: Use the find command to check for files with all permissions open to the world: # find / -type f -perm 777 print Use the find command to check for directories with all permissions open to the world: #find / -type d perm 777 print |