-
[Support] MOTD (Message of the Day)
Confirmed working on 7.2.7
-
[Support] MOTD (Message of the Day)
Getting same issue, running 7.2.5
-
ambipro started following [Support] MOTD (Message of the Day)
-
[Support] binhex - DelugeVPN
This sounds to me like permissions, we get this all the time at the Deluge forums (I'm a moderator and team member for Deluge) - if you wanna throw the book at the situation and see if its permissions, then just use chmod -R 777 /mnt/user/downloadsv2 and then restart the torrent download. If it doesn't work then I would take a look at the tracker announce itself - you can turn on LOGLEVEL to DEBUG and (assuming you don't have a shitload of torrents) you will see in the logs the announce and its response. If you get a peer/seeder count, generallyt its ok but it could also not be able to connect to the peers and seeders themselves, which is an entirely different story. Does the Status under Tracker tab show that Announce was Sent or Announce OK? Are you using a .torrent file when you say "Torrent is added" or a Magnet? No offense, but those logs really only seem to show your VPN and startup stuff, and nothing to do with torrents being added. You'll need to enable AT LEAST info level logging - but preferably DEBUG for actual announce messsaging and responses.
-
ambipro changed their profile photo
-
[Support] binhex - DelugeVPN
There are a few files that, depending on what you are using with Deluge, can grow extremely large. In your appdata/config directory, there is a "sessions": { section in web.conf. This will fill indefinitely with logins made into the WebUI unless you log out. The problem is you can't just delete it outright, as there are other settings in there as well. In my scripts, I log out of the webui every time I exit cross-seed (a program I develop) or when I run scripts that log in and sort my labels and releases. This keeps it somewhat small, but still slightly larger than I'd prefer. They DO expire after 12 or so hours, but I do not believe they are purged until rebooting the webui, or possibly the entire container. There is no real purpose in keeping those sessions past your usage of the webui, and hitting X doesn't log them out or remove them. (They are in JSON, btw.) { "file": 2, "format": 1 }{ "base": "/", "cert": "ssl/daemon.cert", "default_daemon": "", "enabled_plugins": [], "first_login": false, "https": false, "interface": "0.0.0.0", "language": "", "pkey": "ssl/daemon.pkey", "port": 8112, "pwd_salt": "[REDACTED]", "pwd_sha1": "[REDACTED]", "session_timeout": 3600, "sessions": { "0013d2914ccf848be837e5f367e18a9686a5d496f51d1727bd5ff30fe1952a4f": { "expires": 1726879504.0, "level": 10, "login": "admin" }, "0067540478b0a1e647ec8a080b9581464690ee0ed8ea2fb07b0c1eb4291466d1": { "expires": 1759643482.0, "level": 10, "login": "admin" }, "00b94269d123873402aac2e866081b6688fc798ed6f3e7ad41b6cb8dae364564": { "expires": 1731076670.0, "level": 10, "login": "admin" }, .......and many, many more. It has been around a year since I last pruned it, and I have 1852 entries. The primary issue is that there have been PRs and work I've done for the Starr Apps, work I've done refactoring Deluge's client in cross-seed, and several scripts I mentioned. It's impossible to know when the time has come for them to be logged out properly in the automation apps, and turning restarts or container crashes don't clean up The good news is my entire web.conf is 325KB - nothing to worry about. Before I realized this issue, reaching out to Linuxserver, fixing it in cross-seed, and the starr apps - I believe I left binhex a message on Discord, but he doesn't check often, I was getting web.conf files in the range of 30-50MB, screwing up removing the objects in the sessions array, and just having a hard time. Perhaps I'll write a script this weekend that prunes them and keeps a single active connection, and removes idle connections that have not received commands for some duration. It could easily be incorporated into the LSIO and binhex containers as my other scripts have... @binhex If you can find some time, I'd love to have a chat with you on Discord. I think there are a few things I'd consider bugs, as well as the session thing, and other daemon and web process separation that can lead to issues for users. Let me know.
-
[Support] binhex - Deluge
Yep, I think I linked you to one of my forks of LSIO or your container, where I have the script check on startup if it's been over a week since the last GeoIP.dat update - and then snatches the updated version if it has. As far as the keys to the repo, i've had this conversation with Cas and a few other contributors (who unfortunately now have taken a backseat) - it's basically just hard and Cas has personal issues preventing him from reviewing PRs currently....I'd say as far as active devs/support team goes, I'm the most active by far, but I don't have the experience or knowledge to field PRs and handle the entire dev cycle. There was work on converting .egg files for plugins to wheels, but there was a lot of drama in the thread (still on GH, if anyone's interested in reading), with the guy trying to make demands and not following the etiquette and procedures used in our repo.
-
[Support] binhex - Deluge
Yep, those are our thoughts on it as well... I've seen it in both your and LinuxServer's containers, as well as in my own container builds, and when I run it in my IDE from source or an install, the warning appears. So it's not exclusive to any particular container/set/etc. It's even present in the standard Windows install, but you'd have to run the debug console executable rather than the normal deluge.exe. That's awesome, you've included the Stats and ltConfig (from my repo) in your image? How did you tackle the GeoIP.dat updates? My link has the .dat and .gz versions, and updates every 3rd day from MaxMind directly. Anyway, there are several PRs that, while they aren't a simple bugfix for this warning, should result in the error being handled. The issue is that aside from me, the Deluge dev team is mostly just Cas. He's not able to devote much time to not only development (he's the only one with write access to the repo) but also to spending time online generally.
-
[Support] binhex - Deluge
I mean, what exactly is the issue we would be addressing? (I'm on Deluge's team) @binhex ? I don't check these threads super often, but I did post to you just the other day to follow up on some of the things I've been working on that we discussed a while back being integrated into your container. Anyway, If it's just the pkg_resources warning, I am aware of and know that warning, I get it as well both in Docker containers and when running Deluge in debug and console mode. It's only a warning, and does not result in any change in Deluge's behavior. It's innocuous and just a warning you can ignore. We will address it, of course, when we can, but given its lack of importance to the actual client/daemon, it'll probably be some time before we get to fixing this.
-
[Support] binhex - Deluge
Hey @binhex Just checking in, whether you ended up using my updating geoIp.dat at https://geo.el0.org and the updated Stats plugin and https://github.com/zakkarry/deluge-ltconfig/releases/tag/v2.1.0 ltConfig - which has my added high performance profile and previous official profiles. I've taken maintaining ltConfig over officially, just so you're aware.
-
[Support] binhex - DelugeVPN
That's to be expected currently,
-
[Support] binhex - Deluge
Awesome, I left the default profiles but added my own profile that's sightly more up to date with current connection speeds and hardware, would recommend it to most, particularly dedicated seedboxes, I frequently hit above 350MB/s upload while hitting nearly 200MB/s down at the same time with it. Should be a good addition, also there's an updated stats plugin which last I checked you nuked - but can be included for compatibility - you can find our build https://forum.deluge-torrent.org/viewtopic.php?p=236443#p236443
-
[Support] binhex - Deluge
I am maintaining the ltConfig plug, i left a link to it in the delugevpn thread for the latest .egg build you can download, when you mention the latest GeoIP, are you referencing from my geoIP page? https://geo.el0.org ? that updates every 3 days and if you recall I gave you code to check the age and resnatch the updated version edit: https://github.com/zakkarry/deluge-ltconfig - taken over maintenance and have my own special profile in this latest version I'd recommend for most high performance gbit+ seeding servers (description of changed settings can be found https://forum.deluge-torrent.org/viewtopic.php?t=56921)
-
[Support] binhex - Deluge
@rogales i run mine from a virtual venv on the host machine, installing it in the arch base is a bit of a hassle and doesn't gain you much of any benefit
-
[Support] binhex - DelugeVPN
Anyone having speed problems both with VPN and without should check out my (zakkarry's) settings profile in ltConfig (https://github.com/zakkarry/deluge-ltconfig) I'm maintaining the plugin now and my settings gave significant improvement to download AND upload speeds.... You can see what settings are modified https://forum.deluge-torrent.org/viewtopic.php?t=56921
-
[Support] binhex - Deluge
This is the post; there is a code block there with the geoip code I am referring to.
-
[Support] binhex - Deluge
@binhex Was curious if you got around to what I posted for additions. My geoip.dat continues to run strong and with 0 downtime so if you want to integrate it directly it could provide a good addition.