我对我的代码有疑问,我想我可以在这里验证一下。我的要求是从两个不同的服务器复制apache日志和错误日志。我写了一个python程序,使用for循环。
我的代码:
def copylogs(Appache,Errorlog, folder_prefix) :
root_path = '/home/tza/Desktop/LOGS/'
folders = ['Appache','Errorlog']
for folder in folders:
folder_name = folder_prefix + "_" + folder + str(int(time.time()))
mkdircmd = "mkdir -p " + root_path + "/" + folder_name
os.system(mkdircmd)
filePath = root_path + folder_name
serverPath = "/var/log/apache/*"
cmd = "scp " + "symentic@60.62.1.164:" + serverPath + " " + filePath
cmd = cmd.replace("60.62.1.164" ,myip1)
cmd = os.system(cmd)
print "Logs are at:",root_path+folder_name
time.sleep(10)
filePath = root_path + folder
serverPath = "/var/log/errorlog/*"
cmd = "scp " + "symentic@10.95.21.129:" + serverPath + " " + filePath
cmd = cmd.replace("10.95.21.129" ,myip2)
cmd = os.system(cmd)
print "Logs are at:",root_path+folder_name
现在我在程序结束时调用函数:
folder_prefix = "Fail Case-1"
copylogs(Appache,Errorlog, folder_prefix)
我有一个问题。程序成功执行但日志被覆盖。我的意思是首先创建Appache文件夹,复制日志然后再次覆盖它。
我需要的是:创建一个文件夹Appachelogs [定义时间戳],从机器1复制日志,从机器2复制错误日志,然后继续程序
如何实现这一目标?
答案 0 :(得分:1)
scp。
我建议使用错误文件名+时间戳的组合来命名错误日志。日志在名称中有一个时间戳,这也是一个很好的约定,它们也可以防止您遇到的覆盖问题。
答案 1 :(得分:0)
两台计算机上的日志都有相同的文件名吗? scp
会覆盖他们。
就个人而言,我会有两个目录,每台机器一个。或者在Sylar的回答中使用Sylar建议的时间戳。
答案 2 :(得分:0)
考虑使用rsync
代替scp