Hallo zusammen,
ich habe meinen Synology Server neu aufgesetzt und wollte nun Tiny Tiny RSS nach folgender Anleitung neu installieren
- Install PHP 7.3, MariaDB 10, phpMyAdmin in the package center
- in Webstation activate PHP 7.3 and the following things:
curl, iconv, intl, mysqli, pdo_mysql - Start MariaDB 10 and activate TCP/IP connection
- connect with SSH and enter the following commands:
/usr/local/mariadb10/bin/mysql -u root -p
create database ttrss;
use mysql;
quit - start phpMyAdmin and create new user ttrss with global rights
- connect with SSH as superuser and enter the following commands:
git clone https://tt-rss.org/git/tt-rss.git /var/services/web/tt-rss
cd /volume1/web/tt-rss/ && chmod -R 777 cache feed-icons lock - Open http://NAS_URL/tt-rss/install/ and make the following settings:
Database type: MySQL
Username: ttrss
Password: OBEN_DEFINIERT
Database name: ttrss
Host name: NAS_URL
Port: 3307
Tiny Tiny RSS URL: DYNDNS_URL/tt-rss/ - Open config.php and change
define('PHP_EXECUTABLE', '/usr/bin/php');
to
define('PHP_EXECUTABLE', '/usr/local/bin/php72'); - Create tt-rss-update.sh with the content:
/usr/local/bin/php72 /volume1/web/tt-rss/update.php --feeds --quite - Setup script as scheduled task on Synology NAS
Hier https://git.tt-rss.org/fox/tt-rss/com…67fad3eeb5781ef wurde jedoch deutlich dass der Installer entfernt wurde.
Hat jemand eine Anleitung zur Installation Docker (Docker wird ja empfohlen), am besten mit der bereits installieren Datenbank MariaDb10?