question In LINUX, periodic tasks are usually handled by the cron daemon process [ps -ef | grep cron]. Cron reads one or more configuration files that contain command lines and the times they are called. The cron configuration file is called "crontab", which is short for "cron table". Recently, a scheduled task was added to crontab. After the task is executed, there will be normal output by default. In order to ensure that the exception information during the task execution can also be captured and facilitate problem location, I wrote such a command in crontab: 01 09 * * * cd /opdir/test/ && ./test.sh &>>test.log The above command is very easy to understand. It executes the test.sh script at 9:01 every day and redirects the script's standard error output and standard output to the file test.log. Finally, it was found that the script was executed normally, but there was no content in the log file test.log. In order to solve and explain this problem, let's first briefly introduce the problem of redirection in Linux system. concept Linux: 1: indicates standard output (stdout), which is output to the screen by default 2: indicates standard error output (stderr), which is output to the screen by default Usually we often use the following method to redirect script execution results: bash test.sh >test.out //The standard output of the script is written to the file test.out, and the standard error output is directly printed on the screen. Equivalent to: bash test.sh 1>test.out bash test.sh >test.out 2>&1 //Both standard output and standard error are written to test.out and will not overwrite each other, which is equivalent to bash test.sh &>test.out bash test.sh >test.out 2>test.out //Both standard output and standard error output are written to test.out, which may overwrite each other. It is not recommended to use bash test.sh &>test.out //Equivalent to the second method Compare the above effects: The first type: Error output is on the screen, normal output is in the file test.out root@mengalong:~/opdir/mengalong/t/t# cat test.sh #!/bin/bash t date root@mengalong:~/opdir/mengalong/t/t# bash test.sh >test.out test.sh: line 2: t: command not found root@mengalong:~/opdir/mengalong/t/t# cat test.out Wed Oct 31 11:07:24 CST 2018 The second type: Both error output and normal output are redirected to the file test.out root@mengalong:~/opdir/mengalong/t/t# bash test.sh >test.out 2>&1 root@mengalong:~/opdir/mengalong/t/t# cat test.out test.sh: line 2: t: command not found Wed Oct 31 11:09:02 CST 2018 The third type: error output and normal output cover each other root@mengalong:~/opdir/mengalong/t/t# bash test.sh >test.out 2>test.out root@mengalong:~/opdir/mengalong/t/t# cat test.out Wed Oct 31 11:10:36 CST 2018 ot found Fourth, special case, compare the difference between bash test.sh 2>&1 >test.out and bash test.sh >test.out 2>&1: root@mengalong:~/opdir/mengalong/t/t# bash test.sh 2>&1 >test.out test.sh: line 2: t: command not found root@mengalong:~/opdir/mengalong/t/t# cat test.out Wed Oct 31 11:12:13 CST 2018 Here we just put 2>&1 before >test.out, but the result is not what we expected. Both error and normal output go into the test.out file. This is because, in the command bash test.sh 2>&1 >test.out, 2>&1 only redirects the error output to the standard output, and the default value of the standard output is the screen at this time, so it is actually equivalent to the standard error output being redirected to the screen instead of the file. Therefore, the redirection sequence needs to be taken into consideration. Problem Solving Next, let’s look back at the crontab task I wrote: 01 09 * * * cd /opdir/test/ && ./test.sh &>>test.log According to the above conceptual analysis, this writing method should be equivalent to ./test.sh >test.log 2>&1. The output of the script execution and the standard error output are all redirected to test.log. But the actual situation is that there is nothing in the test.log file. This is because the default shell environment used by crontab is /bin/sh, and /bin/sh does not support the redirection method of &>>test.log, so the effect we see is that there is no content in test.log. Therefore, the solution to the problem is to modify the redirection method of crontab: 01 09 * * * cd /opdir/test/ && ./test.sh >>test.log 2>&1 A word of advice During crontab execution, if the script output is not redirected, an email will be sent to the system user by default. The email content is generally stored in /var/mail/$user. If it is not cleaned up, the server root partition will be filled up, eventually causing the machine to be unable to log in. Therefore, the recommended crontab command is as follows: 01 09 * * * cd /opdir/test/ && ./test.sh >>test.log 2>&1 </dev/null & Specifically, </dev/null & is added at the end. I won’t explain the meaning of this in detail. If you are interested, you can analyze it yourself. 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. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Let’s take a look at JavaScript precompilation (summary)
>>: Solution to the error when importing MySQL big data in Navicat
As shown below: The test command determines wheth...
Rendering Commonly used styles in Blog Garden /*T...
Table of contents introduce Installation and Usag...
introduction Currently, k8s is very popular, and ...
CSS plays a very important role in a web page. Wi...
This article example shares the specific code of ...
I won't say much nonsense, let's just loo...
I encountered a problem when I turned on my lapto...
Create a new table CREATE TABLE `person` ( `id` i...
Preface Tip: Here you can add the approximate con...
Table of contents 1. Calculated properties 1.1 Ba...
/********************** * Linux memory management...
Part of the code: Copy code The code is as follow...
Preface The Linux system is controlled by the sys...
The error "mysql is not an internal command&...