Como executar um cron job para executar a cada minuto?

6

Estou tentando criar um diretório com um registro de data e hora em seu nome no diretório /home . Eu criei a seguinte tarefa cron como o usuário root, mas não está em execução. O que estou fazendo errado?

A seguir está minha tarefa do cron que eu criei com privilégio de usuário root.

[root@bvdv-emmws01 home]# crontab -l
* * * * * /home/test.sh

A seguir estão os conteúdos de /home/test.sh . Atualização: adicionou caminho completo para o diretório.

[root@bvdv-emmws01 home]# cat /home/test.sh 
#!/bin/bash
mkdir /home/test_$(date -d "today" +"%Y%m%d%H%M%S")

Permissão de /home/test.sh :

[root@bvdv-emmws01 home]# ls -ltr /home/test.sh
-rwxrwxrwx 1 root root 58 Dec  2 12:58 /home/test.sh

Eu atualizei o arquivo /etc/crontab . Esse arquivo agora tem o seguinte conteúdo:

[root@bvdv-emmws01 home]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# For details see man 4 crontabs

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed

* * * * * root /home/test.sh

Status de crond daemon

[root@bvdv-emmws01 home]# service crond status
crond (pid  1910) is running...
    
por Tahir Akram 02.12.2014 / 10:53

1 resposta

9

Um crontab criado com crontab -e e listável com crontab -l não deve ter um usuário especificado para o comando. Sua entrada deve ser:

* * * * * /home/test.sh

Ou, em alternativa, coloque a linha que você tem em /etc/crontab .

De man 5 crontab (seção EXAMPLE SYSTEM CRON FILE):

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the 'crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

Observe a última frase.

    
por 02.12.2014 / 11:11

Tags