Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

[SOLVED] transmission does not auto start
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Solved: transmission does not auto start
28th Mar, 2015, 09:43 PM
Post: #1
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
transmission does not auto start
Hi
I installed the tranmssion package via xbian-config.
If I check the services status, i see autostart is checked but the service never starts during boot.
I checked the /etc/init.d/ script, which works cause I can start it from command line.
I also checked the /etc/rcx.d directories, which indeed contains the services for transmission.

Any idea why the transmission daemon is not starting?

Thx

s.
Find all posts by this user
Quote this message in a reply
29th Mar, 2015, 04:33 AM
Post: #2
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
Anyone?
Find all posts by this user
Quote this message in a reply
29th Mar, 2015, 04:48 AM
Post: #3
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: transmission does not auto start
Any errors about transmission when booting up?

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
29th Mar, 2015, 06:36 PM
Post: #4
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
where would I find those booterrors? I tried adding a log file of transmission in /etc/default/transmission, but failed to do so.
Find all posts by this user
Quote this message in a reply
29th Mar, 2015, 10:49 PM
Post: #5
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: transmission does not auto start
You should see something in dmesg about transmission failing to start.

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
30th Mar, 2015, 01:43 AM
Post: #6
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
there's nothing in dmesg at all ...
What other log files are there in xbian to check what happens during boot?

I now have the same when trying to add permanent iptables.
I added that as well via update rc.d, rebooted, but no such luck, I have to start it manualy after boot.
Find all posts by this user
Quote this message in a reply
30th Mar, 2015, 03:33 AM
Post: #7
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: transmission does not auto start
Sounds like an upstart issue but I'm unsure.

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
30th Mar, 2015, 04:58 AM
Post: #8
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
transmission service is not ported to upstart it seems, hence I am using the rc.d mechanism ...
It would have been easier indeed if it was added to upstart.
Can someone point me to some useful log files where I could troubleshoot this issue?
Find all posts by this user
Quote this message in a reply
30th Mar, 2015, 05:58 AM
Post: #9
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: transmission does not auto start
Why not just create an upstart job? This has to be a raspbian issue since it isn't an xbian package, have you checked if anyone on raspbian has the same issue?

I don't know where failed service logs are stored.

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
30th Mar, 2015, 07:06 AM
Post: #10
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
RE: transmission does not auto start
Here is one you can edit to suit:

https://launchpadlibrarian.net/113253473/transmission-daemon.upstart

Code:
start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

# give time to send info to trackers
kill timeout 30

setuid debian-transmission

respawn

pre-start script

  # stop job from continuing if no config file found for daemon
  [ ! -f /etc/default/transmission-daemon ] && { stop; exit 0; }

  # source the config file
  . /etc/default/transmission-daemon

  # stop job from continuing if admin has not enabled service in
  # config file.
  [ "$ENABLE_DAEMON" != 0 ] || { stop; exit 0; }

end script

script
  . /etc/default/transmission-daemon

  exec /usr/bin/transmission-daemon -f $OPTIONS
end script

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
31st Mar, 2015, 02:33 AM
Post: #11
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
thanks for that, I tried adding it to /etc/init/transmission, but as you can guess, no good :-).
Damn, the bigger problem is, logging, I have no idea where to find logfiles, and if there are logfiles like the upstart dir, there's nothing useful in there...
Is this a raspbian problem you think?
Find all posts by this user
Quote this message in a reply
26th Mar, 2016, 11:29 PM
Post: #12
Peiote Offline
Registered
Posts: 58
Joined: Mar 2016
Reputation: 0
RE: transmission does not auto start
(31st Mar, 2015 02:33 AM)supahfly Wrote:  thanks for that, I tried adding it to /etc/init/transmission, but as you can guess, no good :-).
Damn, the bigger problem is, logging, I have no idea where to find logfiles, and if there are logfiles like the upstart dir, there's nothing useful in there...
Is this a raspbian problem you think?

It autostarts here. Just need to select that option in SSH menu (I know you did it). Fresh reinstall?
Find all posts by this user
Quote this message in a reply
8th Jun, 2016, 11:47 PM
Post: #13
supahfly Offline
Registered
Posts: 14
Joined: Mar 2015
Reputation: 0
RE: transmission does not auto start
(26th Mar, 2016 11:29 PM)Peiote Wrote:  
(31st Mar, 2015 02:33 AM)supahfly Wrote:  thanks for that, I tried adding it to /etc/init/transmission, but as you can guess, no good :-).
Damn, the bigger problem is, logging, I have no idea where to find logfiles, and if there are logfiles like the upstart dir, there's nothing useful in there...
Is this a raspbian problem you think?

It autostarts here. Just need to select that option in SSH menu (I know you did it). Fresh reinstall?

I started using raspbian itself, and a happy camper ever since.
I had stability issues with xbian, I had to reboot occasionally, lockups, the startup issue, ...
raspbain runs for several months now without the need for a reboot ...
Find all posts by this user
Quote this message in a reply
9th Jun, 2016, 04:39 AM
Post: #14
IriDium Offline
Inquisitor
******
Posts: 2,025
Joined: Jan 2013
Reputation: 170
RE: transmission does not auto start

Set to solved as originator has moved to Raspbian

Please read before you post
How to post a log file

If you liked my help, click on "Thanks" to show your appreciation.
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 9th May, 2025, 01:41 PM Powered By MyBB, © 2002-2025 MyBB Group.