创建脚本以将日志文件复制到本地计算机

时间:2017-11-14 16:07:38

标签: shell amazon-web-services jenkins scripting devops

如何编写脚本以使用Jenkins将日志文件复制到本地计算机?

我曾尝试使用一个脚本,但它无效:

FROM rabbitmq

RUN rabbitmq-plugins enable --offline rabbitmq_management

EXPOSE 15671 15672

1 个答案:

答案 0 :(得分:0)

#!/bin/sh
USER=login_of_user_on_remote_system_that_can_access_logs
HOST=host.name.of.remote.host
LOG_DIR=/absolute/path/to/where/the/log/file/is/
FILE=name_of.log
DESTINATION_DIR=/where/to/save/log/on/local/host/

scp $USER@$HOST:$LOG_DIR/$FILE" $DESTINATION_DIR

您需要使用正确的值初始化上面的所有变量。那就是你需要设置USER,HOST,LOG_DIR等。