在CentOS系统中,你可以使用mailx命令来发送邮件报警。首先,确保你的系统已经安装了mailx。如果没有,请使用以下命令安装:
sudo yum install mailx -y
接下来,配置mailx以使用你的邮件服务器。编辑/etc/mailrc文件,添加以下内容:
set smtp=smtp://your_smtp_server:port
set smtp-auth=login
set smtp-auth-user=your_email@example.com
set smtp-auth-password=your_email_password
set from=your_email@example.com
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb/
替换your_smtp_server、port、your_email@example.com和your_email_password为你的邮件服务器和邮箱账户信息。
现在,你可以创建一个定时任务(cron job)来发送报警邮件。编辑你的crontab文件:
crontab -e
添加以下内容,根据需要修改时间和命令:
* * * * * /path/to/your/script.sh && mailx -s "Cron Job Alert" recipient@example.com < /path/to/your/alert_output.txt
这个例子中,每分钟执行/path/to/your/script.sh脚本,如果脚本执行成功(返回状态码为0),则发送一封主题为"Cron Job Alert"的邮件给recipient@example.com,邮件内容来自/path/to/your/alert_output.txt文件。
保存并退出编辑器。现在,你的定时任务已经配置好了,当满足条件时,将会发送报警邮件。