salt-cp错误/超时复制文件

时间:2016-12-09 01:09:23

标签: salt-stack

文件在那里,但当我运行salt-cp来收集'我得到这个时髦的错误,没有明确的消息。 FWIW,我使用的端口不是默认端口:

dfs = pd.read_html(https://www.google.com/finance?q=googl&fstype=ii, flavor='html5lib')

writer = pd.ExcelWriter(output.xlsx, engine='xlsxwriter')
for df in dfs:
    df.to_excel(writer, sheet_name='Sheet1')
    writer.save()

......文件就位,服务器正常响应:

publish_port: 44505
ret_port: 44506

...  不知道那是什么问题(也试过/ tmp / test / as dest):

salt 'test1' cmd.run 'ls /tmp/test*'
test1:
    /tmp/test1-1.json
    /tmp/test1-2.json
    /tmp/test1-3.json

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

天哪,天哪。来自docs: Salt copy仅适用于小文件(<100KB)。如果您需要将大文件复制到minions,请使用cp.get_file函数。

当然......只有&lt; 100BK文件..非常有用!