aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-01-26 16:39:08 -0600
committerChristian Cleberg <[email protected]>2025-01-26 16:39:08 -0600
commit6004bc8fea020555bf21d755ae52d9c04652dc9b (patch)
tree35c7ebe935079c901e8fd88a5bbd91c341fabaa5 /content
parentaf386793e701976293c05fbdd409470cb324915a (diff)
downloadcleberg.net-6004bc8fea020555bf21d755ae52d9c04652dc9b.tar.gz
cleberg.net-6004bc8fea020555bf21d755ae52d9c04652dc9b.tar.bz2
cleberg.net-6004bc8fea020555bf21d755ae52d9c04652dc9b.zip
add systemd note to transmission post
Diffstat (limited to 'content')
-rw-r--r--content/blog/2024-09-23-self-hosting-transmission.org17
1 files changed, 17 insertions, 0 deletions
diff --git a/content/blog/2024-09-23-self-hosting-transmission.org b/content/blog/2024-09-23-self-hosting-transmission.org
index 4cc9639..5b244ff 100644
--- a/content/blog/2024-09-23-self-hosting-transmission.org
+++ b/content/blog/2024-09-23-self-hosting-transmission.org
@@ -107,6 +107,23 @@ doing so now. Once you start working on remote access via a reverse proxy,
you'll be adding an additional layer of complexity that bring in more confusion
when errors occur.
+> NOTE: If you are trying to initialize =transmission-daemon= via =systemd=
+> instead of using the manually-executed command above, you may notice that the
+> service will timeout and fail to start.
+
+To fix this timeout issue, you need to edit the service file and change
+=Type=notify= to =Type=simple=.
+
+#+begin_src shell
+# Command to edit the service file:
+sudo systemctl edit --full transmission-daemon.service
+
+# Make the edit noted above and then reload the service file with this command:
+sudo systemctl daemon-reload
+sudo systemctl enable transmission-daemon.service
+sudo systemctl start transmission-daemon.service
+#+end_src
+
* Reverse Proxy
Now that the service is running and configured properly, let's work on remote