centos7安装Logwatch配合msmtp邮件客户端发送服务器监控分析日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装Logwatch配合msmtp邮件客户端发送服务器监控分析日志相关的知识,希望对你有一定的参考价值。

###########################

#DATE 2016-07-29                         #

#Authur by Denilas Yeung             #

###########################

一、安装msmtp

下载msmtp:http://jaist.dl.sourceforge.net/project/msmtp/msmtp/1.6.5/msmtp-1.6.5.tar.xz

因为文件格式为xz,解压方式为:

#xz -d msmtp-1.6.5.tar.xz

#tar xvf msmtp-1.6.5.tar

#cd msmtp-1.6.5

#./configure --prefix=/user/local/msmtp

#make

#make install

#/usr/local/msmtp/bin/msmtp -P    #确认配置文件存放路径,Centos7的配置文件在/usr/local/etc/下创建msmtprc文件,Centos6.x在/usr/local/msmtp/etc/下创建msmtprc文件

#vi /usr/local/etc/msmtprc

account accountname

logfile /usr/local/msmtp/msmtp.log

host smtp.xxx.com

port 25

from [email protected]

auth login

tls off

user [email protected]

password password

account default: accountname

#保存退出

#/usr/local/msmtp/bin/msmtp [email protected]    #测试是否能发送邮件

 

至此,msmtp配置完成

#########################################################################################

二、安装配置logwatch

#yum -y install logwatch

#whereis logwatch      #查看logwatch安装后在系统那些文件夹下、默认的配置文件在/usr/share/logwatch/default.conf/logwatch.conf

#vi /usr/share/logwatch/default.conf/logwatch.conf     #修改以下几个参数

MailTo = 要收件的收件人邮件地址

MailFrom = 谁发出

Detail = Low ro Med or High      #系统日志分析报告的详细度:简单、中等、详细

mailer = "/usr/local/msmtp/bin/msmtp -t"      #默认为sendmail,修改为msmtp的路径

#保存退出

#/usr/share/logwatch/scripts/logwatch.pl --mailto [email protected]    #测试目前系统日志分析报告发送至[email protected]邮件,检查是否收到。默认系统发送的是上一天的报告,可以再配置文件里修改。

 

 

 

 

###########################################################################################

 

以上为今天配置的随手笔记!

 

 

 

 

 

本文出自 “杨宇航” 博客,请务必保留此出处http://denilas.blog.51cto.com/244465/1832012

Centos7安装Logwatch配合msmtp邮件客户端发送服务器监控分析日志

原文地址:http://denilas.blog.51cto.com/244465/1832012

以上是关于centos7安装Logwatch配合msmtp邮件客户端发送服务器监控分析日志的主要内容,如果未能解决你的问题,请参考以下文章

使用mutt+msmtp在Linux命令行界面下发邮件(续)

Linux如何安装使用logwatch以便处理日志禁止

centos6.5安装logwatch监控日志

Logwatch日志分析工具

mutt+msmtp做linux邮件客户端

Linux Logwatch的学习总结