ifuleyou 发表于 2019-1-1 12:53:16

haproxy 日志切割

  (1) 取消将日志记录在/var/log/messages目录中
  默认会也将haproxy日志记录在/var/log/message中,要去掉。
  # vi /etc/rsyslog.conf
  local3.*                     /var/log/haproxy.log
  local0.*                     /var/log/haproxy.log
  *.info;mail.none;authpriv.none;cron.none;local3.none      /var/log/messages
  (2) haproxy日志切割
  haproyx日志切割脚本,没有现成的,就专门写了一个日志切割脚本来实现每天的日志切割,加入到计划任务中,一定要su root -c 强制root权限执行。如果要保留访问日志,可以修改脚本实现。
  #!/bin/bash
  # author: jun
  # desc:
  # date: 2014-07-07
  # version: v1.0
  # modify:
  # cut haproxy log
  mv /var/log/haproxy.log /var/log/haproxy.log.bak
  if [ -e /var/log/haproxy.log.bak ]; then
  logrotate -f /etc/logrotate.conf
  chown nobody:nobody /var/log/haproxy.log
  chmod +x /var/log/haproxy.log
  fi
  sleep 1
  if [ -e /var/log/haproxy.log ]; then
  rm -rf /var/log/haproxy.log.bak
  fi
  (3) haproxy配置文件记录
  global
  log    127.0.0.1   local0
  maxconn 65535
  chroot /usr/local/haproxy
  uid 99
  gid 99
  stats socket /usr/local/haproxy/HaproxSocket level admin
  daemon
  nbproc 1
  pidfile /usr/local/haproxy/haproxy.pid
  #debug
  defaults
  log    127.0.0.1    local3
  mode   http
  option httplog
  option httplog clf
  option httpclose
  #option dontlognull
  option forwardfor
  option redispatch
  retries 2
  maxconn 2000
  balance source
  #balance roundrobin
  stats   uri   /haproxy-stats
  stats   refresh 10s
  contimeout      5000
  clitimeout      50000
  srvtimeout      50000
  listenAPP_Cluster 0.0.0.0:80
  mode http
  option httpchk GET /test.html HTTP/1.0rnHost:192.168.0.110
  server 192.168.0.111_node1192.168.0.111:80 weight 3 check inter 2000 rise 2 fall 1
  server 192.168.0.112_node2192.168.0.112:80 weight 3 check inter 2000 rise 2 fall 1
  server 192.168.0.113_node3192.168.0.113:80 weight 3 check inter 2000 rise 2 fall 1
  listenstats_auth 0.0.0.0:91
  modehttp
  stats enable
  stats uri/admin
  stats realm "LOGIN"
  stats authadmin:123456
  #stats hide-version
  stats refresh 10s
  stats admin if TRUE
  (4)重启服务
  /etc/init.d/rsyslog restart
  /etc/init.d/haproxy restart

页: [1]
查看完整版本: haproxy 日志切割