Linux

跟踪多個遠端文件

  • July 1, 2016

有沒有辦法遠端tail 2文件?

我在負載均衡器後面有兩台伺服器(a 和 b),如果可能的話,我想做這樣的事情:

tail -f admin@serverA:~/mylogs/log admin@serverB:~/mylogs/log

謝謝!

這對我有用:

ssh -n user@hostname1 'tail -f /mylogs/log' &
ssh -n user@hostname2 'tail -f /mylogs/log' &

我的首選是多尾。我會執行類似的東西:

multitail -l 'ssh user@host1 "tail -f /some/log/file"' -l 'ssh user@host2 "tail -f /some/log/file"'

引用自:https://serverfault.com/questions/112457