-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] jDownloader not working with NFS mounted download folder #160
Comments
have also attempted to use
Directory perms are set correctly and can write to the directory, as far as I can tell, it appears to be an issue related to the app itself not registering the drive locations as writable. |
Can download to /tmp though not ideal |
Looks like a permission issue. Can you share the output of:
Also, could you share the configuration of the associated export from the NFS server ? |
Executing command from the shell is done as root. So any permission issue might not be seen. |
Also, please share the export from the NFS server so we can see if it can explain the problem. |
I am also available to help diagnose this. I have this issue on three machines, with |
Sharing this information would be useful:
|
Same here with a SMB share.
docker-compose.yaml
The SMB Server output should not be relevant because it is already working as "root" out of the container. |
What is the group and ID of the |
If I understand that correct, that would mean, I'm never able to mount and use other SMB accounts in linux but only my own linux account login name. 🤔 |
Sorry, small confusion on my side. This line So if
|
I have the same problem, is there already a solution or is a solution in the works? Thank you very much |
Please share:
|
Finally I had time to test this and it worked indeed. Thank you very much!!! |
had a similar issue with SMB CIFS like #160 (comment) and your proposal solved it as well as for #160 (comment). |
Ok... same part of the game, another problem. I switched to another SMB server and now jDownloader says "skip download - Disc full". I can manualy write files with the console as root and also app user. But if I do
Idk what I'm doing wrong here.
|
Current Behavior
When attempting to start downloading the program reports invalid download directory. When browsing from a CLI within the container, I can write to the folder I am attempting to save too.
Expected Behavior
jDownloader to work with an Docker mounted NFS volume.
Steps To Reproduce
No response
Environment
Container creation
version: '3'
services:
jdownloader-2:
image: jlesage/jdownloader-2
container_name: jdownloader
ports:
- "5800:5800"
- "5900:5900"
volumes:
- "jdownloader-config:/config"
- "jdownloader-downloads:/output"
networks:
- jdownloader
volumes:
jdownloader-config:
name: jdownloader-config
driver: local
driver_opts:
type: nfs4
o: addr=,rw,noatime,rsize=8192,wsize=8192,tcp,timeo=14
device: ":/volume1/CONTAINERS/jdownloader/config"
jdownloader-downloads:
name: jdownloader-downloads
driver: local
driver_opts:
type: nfs4
o: addr=,rw,noatime,rsize=8192,wsize=8192,tcp,timeo=14
device: ":/volume1/DOWNLOADS"
networks:
jdownloader:
name: jdownloader
Container log
Container inspect
Anything else?
I am using this in a Portainer Stack.
The text was updated successfully, but these errors were encountered: