I have used tt-rss before but used cron. Now trying to use the preferred option of using the update daemon as described here: https://tt-rss.org/gitlab/fox/tt-rss/wikis/UpdatingFeeds.
I am using Amazon Linux which is based on Redhat. I have tried using the rc.local file to start the deamon at boot time but am unable to start it.
I have tried
Code: Select all
php /var/www/html/tt-rss/update.php --daemon &
and
Code: Select all
su --shell=/bin/bash ec2-user -c “nohup /var/www/html/tt-rss/update.php --daemon > /dev/null &”
Can't get it to work. When I run the first command by itself it is fine but it won't update the feeds by itself. I have restarted the server. The PHP_EXECUTABLE is set correctly.
Any ideas?