× NETGEAR will be terminating ReadyCLOUD service by July 1st, 2023. For more details click here.
Orbi WiFi 7 RBE973
Reply

Re: Transmission wont start anymore

mcpeterc
Aspirant

Transmission wont start anymore

Hi.

A couple of days ago my transmission client on my NVX had stopped. When I tried and restart the addon it failed. Then I upgraded to v2.82.00 - same problem. Failing to start.

Then I did a factory reset. But still I cant start the addon :shock:

Have any of youan idea what to try next?

Im using RAIDiator 4.2.24

Best regards

Settings.json:
{
"alt-speed-down": 50,
"alt-speed-enabled": false,
"alt-speed-time-begin": 540,
"alt-speed-time-day": 127,
"alt-speed-time-enabled": false,
"alt-speed-time-end": 1020,
"alt-speed-up": 50,
"blocklist-enabled": true,
"blocklist-url": "http://list.iblocklist.com/?list=bt_level1",
"cache-size-mb": 200,
"dht-enabled": false,
"download-dir": "\/c\/media\/BitTorrent",
"encryption": 1,
"incomplete-dir": "\/c\/media/BitTorrent\/Incomplete",
"incomplete-dir-enabled": true,
"lazy-bitfield-enabled": true,
"max-peers-global": 200,
"message-level": 1,
"open-file-limit": 32,
"peer-limit-global": 240,
"peer-limit-per-torrent": 60,
"peer-port": 51413,
"peer-port-random-enabled": 0,
"peer-port-random-high": 65535,
"peer-port-random-low": 1024,
"peer-port-random-on-start": false,
"peer-socket-tos": 0,
"pex-enabled": 1,
"pidfile": "/var/run/transmission-daemon.pid",
"port-forwarding-enabled": true,
"preallocation": 2,
"prefetch-enabled": 0,
"proxy": "",
"proxy-auth-enabled": false,
"proxy-auth-password": "",
"proxy-auth-username": "",
"proxy-enabled": false,
"proxy-port": 80,
"proxy-type": 0,
"ratio-limit": "2.000000",
"ratio-limit-enabled": true,
"rename-partial-files": true,
"rpc-authentication-required": false,
"rpc-enabled": true,
"rpc-password": "password1",
"rpc-port": 8181,
"rpc-username": "admin",
"rpc-whitelist": "*",
"rpc-whitelist-enabled": true,
"script-torrent-done-enabled": true,
"script-torrent-done-filename": "\/c\/addons-config\/Transmission\/email_alert",
"speed-limit-down": 100,
"speed-limit-down-enabled": false,
"speed-limit-up": 10,
"speed-limit-up-enabled": true,
"start-added-torrents": true,
"trash-original-torrent-files": false,
"umask": 0,
"upload-limit": 100,
"upload-limit-enabled": 0,
"upload-slots-per-torrent": 14,
"utp-enabled": false,
"watch-dir": "\/c\/media\/BitTorrent\/sources\/",
"watch-dir-enabled": 1
}


Transtart.sh:
#!/bin/sh
# *************
# transmission start by super-poussin
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"

# Options to be passed to transmission-remote
TRANSOPT=" localhost:8181 -n admin:password1"
# *************



#LIST=`cat /c/addons-config/Transmission/downloading.txt`
#for ID in $LIST; do
# $REMOTE $TRANSOPT --torrent $ID --start > /dev/null
#done



Transtop.sh:
#!/bin/sh
# *************
# transmission stop by super-poussin
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"

# Options to be passed to transmission-remote
TRANSOPT=" localhost:8181 -n admin:password1"
# *************



#RUNING="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped |awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
#echo $RUNING > /c/addons-config/Transmission/downloading.txt


#LIST="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped | awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
#for ID in $LIST; do
# $REMOTE $TRANSOPT --torrent $ID --stop > /dev/null
#done

$REMOTE $TRANSOPT --exit



Blocklist.sh:
#!/bin/sh
# *************
# transmissionblocklist update by super-poussin
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"

# Options to be passed to transmission-remote
TRANSOPT=" localhost:8181 -n admin:password1"
# *************



$REMOTE $TRANSOPT --blocklist-update > /c/addons-config/Transmission/blocklist.log

Message 1 of 4
mcpeterc
Aspirant

Re: Transmission wont start anymore

After reading the initial addon post I changed the transtart and stop:

Start:
Vador:/Develop/TRANSMISSION-V# cat files/tmp/transtart.sh
#!/bin/sh
# *************
# transmission start by super-poussin
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"

# Options to be passed to transmission-remote
TRANSOPT=" localhost:8181 -n admin:password1"
# *************



LIST=`cat /c/addons-config/Transmission/downloading.txt`
for ID in $LIST; do
$REMOTE $TRANSOPT --torrent $ID --start > /dev/null
done



Stop:
# *************
# transmission stop by super-poussin
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"

# Options to be passed to transmission-remote
TRANSOPT=" localhost:8181 -n admin:password1"
# *************



RUNING="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped |awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
echo $RUNING > /c/addons-config/Transmission/downloading.txt


LIST="$($REMOTE $TRANSOPT -l | tail -n +2 | head -n -1 | grep -v Stopped | awk '{ print $1; }' | awk -F "*" '{ print $1; }')"
for ID in $LIST; do
$REMOTE $TRANSOPT --torrent $ID --stop > /dev/null
done


Remember this is a factory resat NVX with ONLY transmission installed.

Im willing to let our god super-poussin in via SSH if nessary 🙂
Message 2 of 4
mcpeterc
Aspirant

Re: Transmission wont start anymore

Big newz.

I reverted back to version v2.71.01 and its startning now. I would like to use the newest version, so any ideas are welcome
Message 3 of 4
sharmy
Apprentice

Re: Transmission wont start anymore

I PM'ed super-poussin about this issue a few weeks back. No resolution yet.

On a side note - going back to 2.77 got is running again for me (2.80 did not work). Once the service started I was able to upgrade back to 2.80.
Message 4 of 4
Discussion stats
  • 3 replies
  • 3888 views
  • 0 kudos
  • 2 in conversation
Announcements