sh 在关机时将日志传送到s3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在关机时将日志传送到s3相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#
# Version: 0.1
#
# chkconfig: 345 99 01
# description: log2s3_shutdown shell

# HOW TO USE
# chkconfig --add log2s3_shutdown
# chkconfig log2s3_shutdown on
# service log2s3_shutdown start

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin

# Source function library.
. /etc/init.d/functions

start() {
	touch /var/lock/subsys/parser
}

stop() {
        rm -f /var/lock/subsys/parser
        /opt/clouddev/bin/log_backup.sh
}

restart() {
        stop
        start
}


case "$1" in
        start)
                start
                echo "$0 start"
                ;;
        stop)
                stop
                echo "$0 stop"
                ;;
        restart)
                restart
                ;;
        *)
                echo "Usage: $0 {start|stop|restart}"
                exit 1
esac
exit 0

以上是关于sh 在关机时将日志传送到s3的主要内容,如果未能解决你的问题,请参考以下文章

执行 curl 获取的脚本时将参数传递给 bash

sh 将日志传输到s3

在 Heroku 应用下挂载 S3 文件夹

寻找在 S3 存储桶中复制 oracle 表的最佳方法

如何在表单提交时将参数发送到路由

bash & s3cmd 无法正常工作