Translations - ONYX - 9.0 - Exploitation
Guide d'exploitation ONYX Server sur Linux/52/en
De MappingDoc
Deleting XPS conversion and Workflow temporary files
These files are located in the /apps/mapping/temp temporary folder. They are normally deleted automatically. In case of problem (crash, forced interruption…), they may remain in the temporary file. It is then not a normal situation.
find /apps/mapping/temp -name "*cri.tmp" -mtime +2 -exec rm -f {} \; find /apps/mapping/temp -name "*ttf.tmp" -mtime +2 -exec rm -f {} \; find /apps/mapping/temp -name "compress_*" -mtime +2 -exec rm -f {} \; find /apps/mapping/temp -name "*.[0-9]" -mtime +2 -exec rm -f {} \; find /apps/mapping/temp -name "*.[0-9][0-9]" -mtime +2 -exec rm -f {} \;