1月10号
    
    1.计划任务
        1.1 crontab -l #列出系统进程
        1.2 crontab -e #编辑计划任务
            systemctl stop crontab
            ***** 分 时 日 月 周
            ***** date >> /tmp/time.log
            systemctl status crond

        1.3 34 2 1 1 5 循环调度
             */5 * * * * 每五分钟
             */5 */2 * * * 每隔两个小时一个循环 循环内第一小时 每五分钟跑一次
            
    2.发送邮件
        2.1本地用户发送邮件 yum -y install postfix  yum -y install mailx
        
           启动posyfix  systemctl start posfix
           
        2.2第一种发邮件:mail -s "发送邮件"  root
                         邮件内容
                         ctrl+d
            
           第二种发邮件:echo “邮件内容” | mail -s “邮件主题” root
           
           第三种发邮件: mail -s "邮件主题" root </etc/passwd
            
           接受邮件的方式 :root用户:mail   普通用户:mail -u username
        2.3公网邮箱配置
           获取授权码
           配置    vim /etc/mail.rc      
                           set from=19991820903@163.com
                           set smtp=smtp.163.com
                           set smtp-auth-user=19991820903@163.com
                           set smtp-auth-password=GSLTKOHJSRNPAUBV
                           set smtp-auth=login

           发送方式,参考本地邮箱发送方式mail

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐