Translations - ONYX - 9.0 - Exploitation

Guide d'exploitation ONYX Server sur Linux/52/en

De MappingDoc
Révision datée du 8 août 2019 à 13:45 par Alestoquoi (discussion | contributions) (Page créée avec « =====<u> Deleting XPS conversion and Workflow temporary files </u> ===== These files are located in the /apps/mapping/temp temporary folder. They are normally deleted auto... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
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 interrupt…), 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 {} \;