Linux如何设置系统发送告警脚本到邮箱

本次测试版本:centos7.6

第一步安装mailx

bash 复制代码
yum install mailx

安装结果如下:

bash 复制代码
[root@CentOS764 ~]# yum install mailx
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
epel/x86_64/metalink                                                                        |  35 kB  00:00:00     
 * base: mirrors.aliyun.com
 * epel: mirror.nyist.edu.cn
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
base                                                                                        | 3.6 kB  00:00:00     
epel                                                                                        | 4.3 kB  00:00:00     
extras                                                                                      | 2.9 kB  00:00:00     
updates                                                                                     | 2.9 kB  00:00:00     
epel/x86_64/primary_db         FAILED                                          
https://ftp.kaist.ac.kr/pub/epel/7/x86_64/repodata/c791872357f7caad8e42d6043268fd6d0fadb243608366829f3097d94a7f3180-primary.sqlite.gz: [Errno 14] curl#35 - "TCP connection reset by peer"
Trying other mirror.
(1/3): epel/x86_64/updateinfo                                                               | 1.0 MB  00:00:02     
(2/3): updates/7/x86_64/primary_db                                                          |  27 MB  00:00:23     
(3/3): epel/x86_64/primary_db                                                               | 8.7 MB  00:01:37     
Resolving Dependencies
--> Running transaction check
---> Package mailx.x86_64 0:12.5-19.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

===================================================================================================================
 Package                  Arch                      Version                          Repository               Size
===================================================================================================================
Installing:
 mailx                    x86_64                    12.5-19.el7                      base                    245 k

Transaction Summary
===================================================================================================================
Install  1 Package

Total download size: 245 k
Installed size: 466 k
Is this ok [y/d/N]: y
Downloading packages:
mailx-12.5-19.el7.x86_64.rpm                                                                | 245 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
  Installing : mailx-12.5-19.el7.x86_64                                                                        1/1 
  Verifying  : mailx-12.5-19.el7.x86_64                                                                        1/1 

Installed:
  mailx.x86_64 0:12.5-19.el7                                                                                       

Complete!
[root@CentOS764 ~]# 

第二步用命令打开mail配置文件

bash 复制代码
vi /etc/mail.rc

结果如下:

bash 复制代码
[root@CentOS764 etc]# vi /etc/mail.rc

# See mailx(1) for further options.
# This file is not overwritten when 'make install' is run in
# the mailx build process again.

# Sccsid @(#)nail.rc    2.11 (gritter) 8/2/08

# Do not forward to mbox by default since this is likely to be
# irritating for most users today.
set hold

# Append rather than prepend when writing to mbox automatically.
# This has no effect unless 'hold' is unset again.
set append

# Ask for a message subject.
set ask

# Assume a CRT-like terminal and invoke a pager.
set crt

# Messages may be terminated by a dot.
set dot

# Do not remove empty mail folders in the spool directory.
# This may be relevant for privacy since other users could
# otherwise create them with different permissions.
set keep

# Do not remove empty private mail folders.
set emptybox

# Quote the original message in replies by "> " as usual on the Internet.
set indentprefix="> "
set from=abc@163.com smtp=smtp.163.com
set smtp-auth-user=abc@163.com smtp-auth-password=123456 set smtp
-auth=login

连续按两次 i 进入编辑模式,增加如下代码后就变成上面这样

bash 复制代码
set from=abc@163.com smtp=smtp.163.com
set smtp-auth-user=abc@163.com smtp-auth-password=123456 set smtp
-auth=login

保存文件并退出::wq

相关推荐
阿俊仔(摸鱼版)5 分钟前
Python 常用运维模块之Shutil 模块
linux·服务器·python·自动化·云服务器
zhangxueyi11 分钟前
如何理解Linux的根目录?与widows系统盘有何区别?
linux·服务器·php
可涵不会debug11 分钟前
C语言文件操作:标准库与系统调用实践
linux·服务器·c语言·开发语言·c++
ghx_echo15 分钟前
linux系统下的磁盘扩容
linux·运维·服务器
hhzz1 小时前
ansible自动化运维实战--script、unarchive和shell模块(6)
运维·自动化·ansible
蘑菇丁1 小时前
ansible 批量按用户名创建kerberos主体,并分发到远程主机
大数据·服务器·ansible
幻想编织者1 小时前
Ubuntu实时核编译安装与NVIDIA驱动安装教程(ubuntu 22.04,20.04)
linux·服务器·ubuntu·nvidia
利刃大大2 小时前
【Linux入门】2w字详解yum、vim、gcc/g++、gdb、makefile以及进度条小程序
linux·c语言·vim·makefile·gdb·gcc
阿狸的家2 小时前
ovs实现lb负载均衡
运维·云计算·负载均衡·ovs
C嘎嘎嵌入式开发2 小时前
什么是僵尸进程
服务器·数据库·c++