CONCURRENT MANAGER LOG DELETION
Delete the log files under $APPLCSF\log directory.
$find . -mtime +1 -exec rm {} \ = delete log more than one day old.
MAKE the application server fast
Gather Schema statistics [How to run Gather Schema statistics on R12]
From System Administrator responsibility search %Gather% in concurrent manager. Then Run it. Give parameter “ALL” for all schema.
1 comment:
Hi anil,
we need to delete the FNDCPPUR program log files and output files manually to free up the disk space. Here I am giving UNIX commands to find out and deleting the old files. If your FNDCPPUR program is scheduled to run daily and given AGE Mode value as 7, purge Program has to delete the files which are older than 7 days. But if program did not delete the files, use this command to find out those files.
Find the Concurrent Request Log and Output files which are not deleted
find $APPLCSF/$APPLLOG -mtime +7 -name “*.req”
find $APPLCSF/$APPLOUT -mtime +7 -name “*.out
Delete the Concurrent Request log and output files which are older than 7 Days
find $APPLCSF/$APPLLOG -mtime +7 -name “*.req” -exec rm “{}” “;”
find $APPLCSF/$APPLOUT -mtime +7 -name “*.out” -exec rm “{}” “;”
Delete other files in $APPLCSF/$APPLLOG directory
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 “{}” “;”
Regards,
Nagu akkina
Post a Comment