Uncategorized

SOLVED – Deluge Web auto connect to daemon on remote host or non-default port — No patching needed

I’ve run into this before, but have always been able to get it to work since I have always run the daemon and the web server on the same server, so the default localhost:58846 worked fine. However, I just setup my web server on a separate host from the daemon and could not get auto connect to work no matter what I tried. After some digging and looking at the actual Python code, I finally discovered how this works.

In the web.conf configuration file for the Deluge Web server, there is a line for “default_daemon” which can specify the default daemon. However, everyone on the web says to put the hostname:port here of the daemon you want to connect to. This is not correct. The value here is expected to be the host ID of the configured daemon. However, this info is not provided anywhere in the UI. After a little more digging I finally found the info needed.

Where the web.conf file resides, there is also a file called hostlist.conf.1.2. This file contains all of the configured daemons for the web server. Each host configured in this file should have a long string of characters as the first line in each definition. Here’s an example from my setup:
"hosts": [
[
"a460f75d27562b0317a22b3e2600bd23e1fedb16", <- This is what you need
"192.168.0.15",
58846,
"usernamehere",
"passwordhere"
]
]

Now, make sure that your deluge web server daemon is shut down then edit the web.conf file and paste that host ID into the double quotes after “default_daemon”. Now start your deluge web service and it should automatically connect to the specified daemon.

Restore individual encrypted files in OwnCloud and Nextcloud

I setup a Nextcloud server a few months back.  I immediately enabled and configured encryption.  I also keep daily file backups using rsync to a backup server.  This backup does, of course, backup the encrypted versions of my files.  Ever since setting this up, I’ve been trying to find a way to be able to restore an individual file from my backup, but until now I haven’t found a decent working solution.  It seems, though, that I may have finally uncovered such a solution.

Continue reading

SharePoint Online (Office 365) files mysteriously move from subdirectories to Documents root

I worked with a customer for over 4 hours yesterday trying to troubleshoot an issue where files that were stored in some sub-directories were mysteriously moving back to the Documents root within 10 minutes. I verified that the files were syncing in the sub directories properly, but within 10 minutes, the files would suddenly be back in the root of the Documents library.
Continue reading

How To: Run Plex Media Server as a Windows Service – OLD

I’ve written a new post with a new simpler method for setting up Plex Media Server as a service.  Click here for the updated post.

I recently began using Plex as a media service for my own local media. I like it because it allows you to stream your media anywhere that you can run the Plex app which is support on many different platforms including (but not limited to) Windows, Mac, Linux, Android and iOS. It also allows you to share your media library with others. All for free. There is a paid version that offers some advanced features, but the free version works swell.

Continue reading