如何使用ssh远程编辑定时任务crontab?
Posted 沧海一粟,何以久远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用ssh远程编辑定时任务crontab?相关的知识,希望对你有一定的参考价值。
linxu定时任务使用crontab,编辑crontab可以直接编辑:crontab -e;也可以直接读取文件 crontab file。这两种操作都不需要特殊权限sudo。区别在于,crontab -e只能登录之后界面操作;crontab file可以远程执行。
举例:ssh [email protected] ‘touch file; crontab file‘。或者先使用scp把file放入远程服务器上,然后再执行ssh [email protected] crontab file
以上是关于如何使用ssh远程编辑定时任务crontab?的主要内容,如果未能解决你的问题,请参考以下文章