請教大家
參考此篇https://www.jordanvanbergen.nl/post/170153757314/how-to-setup-rsync-without-password-using-ssh-on
有讓兩台linux可以互連 但不用密碼了,但是否可以在電腦A,設定sh執行別台電腦的cron job或路徑呢
mv test@192.168.0.206:/home/anderson/index test@192.168.0.206/home/anderson/indexok
謝謝
電腦A,設定sh執行別台電腦的cron job或路徑呢?
是問
電腦A, 用 shell 去執行電腦B的 shell 嗎?
ssh test@192.168.0.206 "mv /home/test/a.txt /home/test/b.txt"
當然要注意有權限之類的...
關於執行 別台的 crontab job , 或路徑不懂...
crontab 是那台電腦自己的定時執行的排程,當然A排程A執行 ,B排程,B 執行,,,,
你是不是說 A排程去執行遠的 B 裡面的 shell 這樣嗎?