⭑⭑ UPDATE ⭑⭑rednoah wrote: ↑22 May 2021, 05:04 ⭑⭑ FileBot packages for Synology DSM 6.2.4 are in beta and available for testing ⭑⭑
Packages for DSM 6.2.4:
- Java Installer (java-installer_*.spk)
- FileBot (FileBot_*.spk)
- FileBot Node (filebot-node_*.spk)
Add Package Source:
- Package Center ➔ Settings ➔ Package Sources ➔ Add ➔ Name: FileBot Node
Code: Select all
https://raw.githubusercontent.com/filebot/filebot-node/master/syno-dsm6.json
DSM 6.2.4 breaks DSM authentication for FileBot Node, thus the client-side Web UI won't be able to communicate with the server-side node service, i.e. nothing happens when I click on Execute or any other button.
Option A for docker capable devices:
If you are familiar with docker and have an x86_64 device, then you can just use the generic filebot-node docker container instead:
https://hub.docker.com/r/rednoah/filebot/
e.g. Run a custom filebot-node service at http://<IP>:5452/filebot/
Code: Select all
docker run --rm -it -v /volume1:/volume1 -v data:/data -p 5452:5452 -e FILEBOT_NODE_AUTH=BASIC -e FILEBOT_NODE_AUTH_USER=alice -e FILEBOT_NODE_AUTH_PASS=wxy87rFb
Option B for FileBot Node 0.3.1 and lower:
If you're familiar with SSH, then you can configure the FileBot Node server-side service to use HTTP BASIC authentication instead of Synology authentication.
Edit /var/packages/filebot-node/target/start
Code: Select all
sudo vi /var/packages/filebot-node/target/start
Code: Select all
export FILEBOT_NODE_AUTH=SYNO
Code: Select all
export FILEBOT_NODE_AUTH=BASIC
export FILEBOT_NODE_AUTH_USER=alice
export FILEBOT_NODE_AUTH_PASS=wxy87rFb

