Crontab + .sh + php

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

I'm trying to call a shell script every 5 minutes, witch executes php file under root.

# crontab -l
*/5 * * * * /home/regularuser/call.sh

permissions:

-rw-rw-rw-  1 root   root        162 Jun  6 23:40 call.php
-rwxr-xr-x  1 root   root         66 Jun  7 01:20 call.sh

call.sh contents:

#!/bin/bash
php -q /home/regularuser/call.php
echo "request processed"

My problem is that my php file doesn't get executed via crontab. However, if I call call.sh - everything works perfectly.

I'm new to crontab and shell scripting, so any advice/resources are welcome.

profilepic.png
manpreet 2 years ago

 

Remember that Cron will run with a very minimal environment. Certain important things like PATH may be different then what you expected.

Try logging the output of the command to syslog, like this:

*/5 * * * * /home/regularuser/call.sh 2>&1 | logger -t call.sh

This will print any stdout and stderr to your system logs, usually to /var/log/messages . From here, use 'grep call.sh /var/log/messages' to see your error, which will likely be 1-2 lines.

I often prefer to log errors like this, instead of spamming email. But this is only useful for short messages.

Once you find the error message, update your question with the error. Or, you might be able to figure this out for yourself ;)


0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

tuteehub community

Join Our Community Today

Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.

tuteehub community