Use ftp to regularly upload logs to other servers

Source: Internet
Author: User
Use ftp to regularly upload logs to other servers #! /Bin/bash # generation of time 'date -- date & quot;-1 hour & quot; + % Y 'M' date -- date & quot;-1 hour & quot; + % m 'D' date -- date & quot;-1 hour & quot; + % d 'H' date -- date & quot;-1hou
Use ftp to regularly upload logs to other servers #! /Bin/bash # generation of time Y = 'date -- date = "-1 hour" + % Y'm = 'date -- date = "-1 hour" + % M' d = 'date -- date = "-1 hour" + % d' H = 'date -- date = "-1 hour" + % H' www.2cto.com # IP address acquisition IP address =" '/sbin/ifconfig | grep 'bcast' | awk-F' [:] ''{print $13}'' "# log name generation (varies with time and ip) LOG_NAME =" access-$ H-$ IP. log "# FTP server address HOST =" 10.10.10.170 "# FTP server USER name =" user "# FTP server password PASS =" passwd "# upload the log file for ROUTE_NAME in different projects cyclically "www_log" "h_log" "lpt_log" "C_log "; do LCD = "/usr/local/nginx/logs/$ ROUTE_NAME/$ Y/$ m/$ d" RCD = "/$ ROUTE_NAME/$ Y/$ m/$ d "if [-f $ LCD/$ LOG_NAME]; then lftp <EOF open ftp: // $ USER: $ PASS @ $ HOST LCD $ LCD mkdir-p $ RCD cd $ RCD put-c $ LOG_NAME byeEOF else echo "log file does not exist! "Fidone ;~
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.