Pipe file
ad85
-
dubcek Messages postés 18808 Date d'inscription Statut Contributeur Dernière intervention -
dubcek Messages postés 18808 Date d'inscription Statut Contributeur Dernière intervention -
Bonjour,
je fait une recherche sur les log apache et je ne comprend pas à quoi sert le log pipe (fichier log pipe)
sous apache. Pourriez-vous m'espliquer??
je vous remercie
je fait une recherche sur les log apache et je ne comprend pas à quoi sert le log pipe (fichier log pipe)
sous apache. Pourriez-vous m'espliquer??
je vous remercie
Configuration: Windows Vista Internet Explorer 7.0
A voir également:
- Pipe file
- .Bin file - Guide
- .Dat file - Guide
- File ///sdcard/ - Télécharger - Gestion de fichiers
- Host file - Guide
- File magic - Télécharger - Traitement de texte
2 réponses
hello
Apache httpd is capable of writing error and access log files through a pipe to another process, rather than directly to a file. This capability dramatically increases the flexibility of logging, without adding code to the main server. In order to write logs to a pipe, simply replace the filename with the pipe character "|", followed by the name of the executable which should accept log entries on its standard input. Apache will start the piped-log process when the server starts, and will restart it if it crashes while the server is running. (This last feature is why we can refer to this technique as "reliable piped logging".)
http://httpd.apache.org/docs/2.0/logs.html#piped
Apache httpd is capable of writing error and access log files through a pipe to another process, rather than directly to a file. This capability dramatically increases the flexibility of logging, without adding code to the main server. In order to write logs to a pipe, simply replace the filename with the pipe character "|", followed by the name of the executable which should accept log entries on its standard input. Apache will start the piped-log process when the server starts, and will restart it if it crashes while the server is running. (This last feature is why we can refer to this technique as "reliable piped logging".)
http://httpd.apache.org/docs/2.0/logs.html#piped