Rtorrent timed out

Hi,
Since i upgrade my Quickbox and re installed Rutorrent im getting this error ( request to rtorrent timed out )
Any idea why is that. Before upgrading i never had this problem.

In terminal run
sudo su
systemctl restart [email protected]

thanks

systemctl restart rtorrent@my server user name ?.service

the username you login with

i did what you mentioned but still im getting that error

What does systemctl status [email protected] show?

Remember to change USERNAME in the above string with your own username.

Could you please check the screenshot. I still have the same issue

That screenshot states that your ruTorrent is running just fine. This is simply too general and/or cannot be reproduced. If it’s timing out, this could be a matter of connection to the server or you have some very sluggish hardware.

What is the result of:

dd if=/dev/zero of=test.data bs=1M count=1000 conv=fdatasync;rm test.data

I think the key here is the statement that they reinstalled rutorrent. My guess is the scgi ports are mismatched. rtorrent is fine, rutorrent cant talk to rtorrent.

rTorrent seems started :thumbsup:

Could you please clear your cache from your browser ?
Test ruTorrent from another web browser ?

Could you give us the result of this command (please hide your username) :
ps -ef | grep rtorrent

And could you please add this few lines to the .rtorrent.rc (nano /home/YourUser/.rtorrent.rc) file just before the “END HERE” :

log.open_file = "rtorrent.log", (cat,/tmp/rtorrent.log.,(system.pid))                                                                                                          
log.add_output = "info", "rtorrent.log"                                                                                                                                        
log.add_output = "error", "rtorrent.log"                                                                                                                                       
log.add_output = "critical", "rtorrent.log"                                                                                                                                    
log.add_output = "notice", "rtorrent.log"                                                                                                                                      
log.add_output = "warn", "rtorrent.log"                                                                                                                                        
#log.add_output = "debug", "rtorrent.log"

Restart rTorrent : sudo systemctl restart rtorrent@YourUser
And show us the /tmp/rtorrent.{PID}.log (PID = number, you should have one file per rtorrent restart)

Thanks!

PS : @JMSolo, I don’t see any log file set in my rtorrent.rc, it is somewhere I didn’t see ?

By default we haven’t included logs within the rtorrent.rc as these can grow bulky real fast. This can however be added to the bottom of the users .rtorrent.rc file and just above the line # -- END HERE --. Be sure to create the /home/$USERNAME/log directory first.

# ------ BEGIN LOG FILE CREATION ------
log.open_file = "rtorrent", ~/log/rtorrent.log
log.open_file = "tracker", ~/log/tracker.log
log.open_file = "storage", ~/log/storage.log

log.add_output = "info", "rtorrent"
log.add_output = "critical", "rtorrent"
log.add_output = "error", "rtorrent"
log.add_output = "warn", "rtorrent"
log.add_output = "notice", "rtorrent"
log.add_output = "debug", "rtorrent"

log.add_output = "dht_debug", "tracker"
log.add_output = "tracker_debug", "tracker"

log.add_output = "storage_debug", "storage"
# ------ END LOG FILE CREATION ------
1 Like