View Single Post
  #1  
Old 06.03.2019, 03:22
ELM0 ELM0 is offline
Junior Loader
 
Join Date: Mar 2019
Posts: 14
Question jdownloader headless : update and restart not working

Hello!

I need help with my headless jDownloader installation. I installed jdownloader on my server using the following tutorial: **External links are only visible to Support Staff****External links are only visible to Support Staff**

Code:
apt-get update
apt-get install oracle-java8-jdk
cd /opt/jdownloader
java -jar JDownloader.jar -norestart
java -jar JDownloader.jar -norestart
Code:
cd /etc/systemd/system
nano jdownloader.service
Code:
[Unit]
Description=JDownloader
Wants=network.target
After=network.target
 
[Service]
Type=simple
 
ExecStart=/usr/bin/java -jar /opt/jdownloader/JDownloader.jar
 
[Install]
WantedBy=multi-user.target
Code:
systemctl daemon-reload
systemctl start jdownloader.service
systemctl enable jdownloader.service

However, when I click "update and restart" in the my.jdownloader webgui, jDownloader goes offline and wont restart. I dont know how to troubleshoot this and why jDownloader is not restarting automatically? I strictly stick to the tutorial code. Maybe someone knows what I should fix to make it work or someone can recommend me a better tutorial, please.

Last edited by ELM0; 06.03.2019 at 03:30.
Reply With Quote