Translations - ONYX - 9.0 - Exploitation - Guide d'exploitation ONYX Server sur Linux/52/en

Différence entre versions

De MappingDoc
(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... »)
 
 
Ligne 1 : Ligne 1 :
 
=====<u> Deleting XPS conversion and Workflow temporary files </u> =====
 
=====<u> Deleting XPS conversion and Workflow temporary files </u> =====
 
These files are located in the /apps/mapping/temp temporary folder.
 
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.
+
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.
 
It is then not a normal situation.
 
  find /apps/mapping/temp -name "*cri.tmp"    -mtime +2 -exec rm -f {} \;
 
  find /apps/mapping/temp -name "*cri.tmp"    -mtime +2 -exec rm -f {} \;

Version actuelle datée du 28 août 2019 à 13:26

Informations concernant le message (contribuer)

Ce message n’est pas documenté. Si vous savez où ou comment il est utilisé, vous pouvez aider les autres traducteurs en créant sa documentation.

Définition du message (ONYX:9.0:Exploitation:Guide d'exploitation ONYX Server sur Linux)
=====<u> Suppression des fichiers temporaires de conversion XPS et de Workflow</u> =====
Ces fichiers se trouvent dans le dossier temporaire /apps/mapping/temp.
Normalement, ils sont supprimés automatiquement. Mais en cas de problème (crash, interruption forcée…), ils peuvent subsister dans le dossier temp.
Ce n’est donc pas une situation normale.
 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 {} \;
 find /apps/mapping/temp -name "xps_*"        -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "tmp_report*"  -mtime +2 -exec rm -f {} \;
Traduction=====<u> Deleting XPS conversion and Workflow temporary files </u> =====
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 {} \;
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 {} \;