zoukankan      html  css  js  c++  java
  • Apache rotatelogs命令

    一、简介

    rotatelogs 是 Apache 自带的管道日志程序,可以完美的实现日志的轮转功能。

    二、语法

    Usage: rotatelogs [-v] [-l] [-L linkname] [-p prog] [-f] [-t] [-e] [-c] <logfile> {<rotation time in seconds>|<rotation size>(B|K|M|G)} [offset minutes from UTC]
    
    Add this:
    
    TransferLog "|rotatelogs /some/where 86400"
    
    or 
    
    TransferLog "|rotatelogs /some/where 5M"
    
    to httpd.conf. By default, the generated name will be
    <logfile>.nnnn where nnnn is the system time at which the log
    nominally starts (N.B. if using a rotation time, the time will
    always be a multiple of the rotation time, so you can synchronize
    cron scripts with it). If <logfile> contains strftime conversion
    specifications, those will be used instead. At the end of each
    rotation time or when the file size is reached a new log is
    started.
    
    Options:
      -v       Verbose operation. Messages are written to stderr.
      -l       Base rotation on local time instead of UTC.
      -L path  Create hard link from current log to specified path.
      -p prog  Run specified program after opening a new log file. See below.
      -f       Force opening of log on program start.
      -t       Truncate logfile instead of rotating, tail friendly.
      -e       Echo log to stdout for further processing.
      -c       Create log even if it is empty.
    
    The program is invoked as "[prog] <curfile> [<prevfile>]"
    where <curfile> is the filename of the newly opened logfile, and
    <prevfile>, if given, is the filename of the previously used logfile.

    三、实例

  • 相关阅读:
    newCachedThreadPool无上限线程池使用
    newFixedThreadPool固定线程使用
    java定时器
    http文件上传/下载
    ThreadPoolExecutor线程池
    阻塞队列
    非阻塞队列
    IO文件夹拷贝(文件内含有文件和文件夹)
    MD5加密
    web.xml文件的作用
  • 原文地址:https://www.cnblogs.com/274914765qq/p/4915916.html
Copyright © 2011-2022 走看看