To answer the question, “Is it okay to get rid of the files in the errors directory?” (we have been doing it for many years without problems).
We have a clean_dirs.ksh script that runs nightly and you will notice one of the entries removes file(s) older than 30 days from the errors directory you are asking about.
#/usr/bin/ksh
find $HCIROOT -name core -exec rm {} ; 2>/dev/null
find /oldmsgs -type f -mtime +90 -exec rm {} ;
find /oldmsgs/5.2.1P2/prod_doc_mgt/ob_tran_3004 -type f -mtime +30 -exec rm {} ;
site_list=`list_sites.ksh`
for site in $site_list; do
[code]#/usr/bin/ksh
find $HCIROOT -name core -exec rm {} ; 2>/dev/null
find /oldmsgs -type f -mtime +90 -exec rm {} ;
find /oldmsgs/5.2.1P2/prod_doc_mgt/ob_tran_3004 -type f -mtime +30 -exec rm {} ;
site_list=`list_sites.ksh`
for site in $site_list; do
Russ Ross
RussRoss318@gmail.com