I am hosting Tiny Tiny RSS site hosted on
Amazon Linux AMI
To update the feed automatically I have to run following cron job.
Referen
You should first inspect the cron log file /var/log/cron
and look for any errors. This will probably give you the answer. Also make sure you can run the command successfully on the command line (/usr/bin/php /var/www/html/tt-rss/update.php --feeds --quiet
).
Simply do : * * * * * wget -o - -q -t 1 "your url with cron file"
This sounds like crond
is not running. In which case:
service crond start
chkconfig crond on
Please check the spaces, it could be because of spaces are not placed correctly
Please remove the "--quiet" part from your cron command and check the log and feed again
In Amazon Linux 2 you should enter these commands:
sudo systemctl start crond
sudo systemctl enable crond