which files to delete in Oracle Apps to free up the space [message #421936] |
Fri, 11 September 2009 23:31 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
laksha
Messages: 42 Registered: June 2006
|
Member |
|
|
Hello Experts,
We run Oracle Apps in multinode mode(1.FORMS 2. CM+REPORT).
As a part of a dialy maintanance i run the report "Purge Concurrent Request and/or Manager Data" (Parameters: REQUEST.Age.7.........Yes.Yes). I believe that this deletes the logs which are older than 7 day.
My filesystem size is increasing and the curent situation on the server is
Size Used Avail Use%
41G 35G 3.4G 92% /prod_apps
39G 33G 3.8G 90% /applprod
find $APPLCSF/$APPLLOG -mtime +7 -name "*.req" -exec rm "{}" ";"
find $APPLCSF/$APPLOUT -mtime +7 -name "*.out" -exec rm "{}" ";"
find $APPLCSF/$APPLLOG -mtime +7 -name "*.log" -exec rm "{}" ";"
find $APPLCSF/$APPLLOG -mtime +7 -name "*.mgr" -exec rm "{}" ";"
find $APPLCSF/$APPLLOG -mtime +7 -name "f60webmx*" -exec rm "{}" ";"
find $APPLCSF/$APPLLOG -mtime +7 -name "*.rti" -exec rm "{}" ";"
Also i use these commands sometimes but i believe this is already done by the report "Purge Concurrent Request and/or Manager Data".
I want to know which other files can i delete on regular basis to free up the $APPL_TOP space.
|
|
|
|
|