How to notify users of crontab execution results by email

How to notify users of crontab execution results by email

symptom

I set a crontab task on a centos7 host, but when the time comes, I run mail and it prompts No mail, which means cron did not send an email to notify the user of the execution result of the task.

Troubleshooting process

Check crontab log

CentOS logs are managed by systemd, so you can view related logs through systemctl.

journalctl _COMM=crond --since=today

Or use root to view the log /var/log/cron

sudo cat /var/log/cron |grep -v '/usr/local/qcloud/stargate/admin/start.sh'

Finally, we will see a line in the log: Jun 22 00:50:19 localhost CROND[21181]: (lujun9972) MAIL (mailed 102 bytes of output but got status 0x004b#012)

This means that the email failed to be sent.

Check the mail log

Check /var/log/maillog and you will find Jun 22 00:50:19 localhost postfix/sendmail[21403]: fatal: parameter inet_interfaces: no local interface found for ::1

That is to say, mail prompts that it cannot find the corresponding network card for the IPV6 address ::1 on the host.

Workaround

postfix/postdrop[5487]: warning: unable to look up public/pickup: No such file or directory

After searching, I just need to create the missing file myself and then restart the postfix service.

sudo mkfifo /var/spool/postfix/public/pickup
sudo chown postfix:postdrop pickup
systemctl restart postfix.service

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Django-crontab implements sample code for scheduled tasks on the server
  • Detailed explanation of the use and precautions of crontab under Linux
  • How to automatically execute the task schedule crontab every few minutes in a specified time period on Linux
  • Use crontab to run the script of executing jar program regularly in centOS6
  • Laravel solves the problem of crontab not executing
  • Analysis of the operation method of Django crontab timing task module

<<:  How to install MySQL 5.7 from source code in CentOS 7 environment

>>:  Vue implements the method example of tab routing switching component

Recommend

Complete MySQL Learning Notes

Table of contents MyISAM and InnoDB Reasons for p...

Tomcat first deployment web project process diagram

Put your own web project in the webapps directory...

Encoding problems and solutions when mysql associates two tables

When Mysql associates two tables, an error messag...

How to convert MySQL horizontally to vertically and vertically to horizontally

Initialize Data DROP TABLE IF EXISTS `test_01`; C...

Nginx implements dynamic and static separation example explanation

In order to speed up the parsing of the website, ...

Mobile development tutorial: Summary of pixel display issues

Preface I believe that in the process of mobile t...

Analysis of the implementation of MySQL statement locking

Abstract: Analysis of two MySQL SQL statement loc...

The concept of MTR in MySQL

MTR stands for Mini-Transaction. As the name sugg...

Learning to build React scaffolding

1. Complexity of front-end engineering If we are ...

Dynamic starry sky background implemented with CSS3

Result:Implementation Code html <link href=...

Issues installing Python3 and Pip in ubuntu in Docker

text 1) Download the Ubuntu image docker pull ubu...

Summary of Mathematical Symbols in Unicode

There are many special symbols used in mathematic...

Some tips on speeding up the development of WeChat mini-programs

1. Create a page using app.json According to our ...

How to use union all in MySQL to get the union sort

Sometimes in a project, due to some irreversible ...