一.atd和crond两个任务管理程序的区别
atd是单一执行的任务管理程序,一个任务管理程序只会执行一次任务
crond是循环性执行好的任务管理程序,例如可以在每年,每月,每天,某个时间段进行执行任务。
二.指定在2023/08/26 09:00将时间写入testmail.txt文件中
[root@localhost ~]# touch testmail.txt
[root@localhost ~]# at 09:00 2023-08-26
warning: commands will be executed using /bin/sh
at> date >> ./testmail.txt
at> <EOT>
job 1 at Sat Aug 26 09:00:00 2023
三.指定在每天凌晨4:00将该时间点之前的系统日志信息备份到个目录下(/var/log/messages ),备份后日志文件名显示格式logfileYY-MM-DD HH-MM
[root@localhost ~]# crontab -e
no crontab for root - using an empty one
crontab: installing new crontab
[root@localhost ~]# crontab -l
00 4 * * * cp /var/log/messages /logfile`date %F%T`
四.写出linux主机之间ssh免密登陆的过程
前置步骤
systemctl stop firewalld
setenforce 0
1.client创建密钥
ssh-keygen -t RSA
2.查看文件
ll ~/.ssh
3.发送密钥文章来源:https://www.toymoban.com/news/detail-536642.html
ssh-copy-id 192.168.43.139
4.验证文章来源地址https://www.toymoban.com/news/detail-536642.html
ssh 192.168.43.139
到了这里,关于Linux at命令与crond命令,Linux主机之间ssh免密登录的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!