28 Kwietnia 2024 15:57:53
Nawigacja
· Strona Główna
· Forum

· Tomato by Shibby
· FreshTomato


Wątki na forum
Najnowsze dyskusje
· konfiguracja router ...
· nju swiatło pytania
· Asus TUF-AX3000_V2 p...
· Jaki router kupić? ...
· Szukam zaproszenia n...
· [Howto] Xpenology na...
· dodatkowe złącza s...
· RT-N18U - nie można...
· [MOD] Tomato64 (x86-64)
· Firewall nie zawsze ...
· [MOD] FreshTomato-AR...
· Optware na CIFS
· RT-AX56U - Status kl...
· [MOD] FreshTomato-MI...
· Multiroom N z wykorz...
· [S] Asus RT-AC68U E1
· [S] ASUS RT-AC68U
· Rozłączanie klient...
· serwer VPN za wan'em
· Przejscie z dyndns f...
Najpopularniejsze obecnie wątki
· Jaki router kupi... [552]
· Asus TUF-AX3000_V... [19]
· konfiguracja rout... [10]
· nju swiatło pytania [2]
Ankieta
Jaki procesor posiada twój router?

Broadcom MIPSEL
Broadcom MIPSEL
36% [151 głosów]

Broadcom ARM
Broadcom ARM
52% [216 głosów]

Atheros
Atheros
5% [22 głosów]

Marvell
Marvell
1% [4 głosów]

Ralink
Ralink
1% [3 głosów]

Intel/AMD/VIA
Intel/AMD/VIA
1% [5 głosów]

Żaden z powyższych
Żaden z powyższych
4% [15 głosów]

Ogółem głosów: 416
Musisz zalogować się, aby móc zagłosować.
Rozpoczęto: 02/02/2015 09:38
Twoje IP
3.145.170.65
Zobacz wątek
OpenLinksys » :: PORTAL :: » Tutoriale
 Drukuj wątek
Rtorrent + rutorrent = nowa alternatywa dla transmission
zadzior
Nie wyrobiłem z transmissionWink , jego gui jest tragiczne dla mnie (strasznie wolno się włącza)dlatego powróciłem do rtorrenta.
A więc zainstalowałem ponownie wszystko na czysto wg. tutka , i teraz problemem jest dodawanie torków do niego przez gui ,przez konsole rtorrent w tle dodaje się elegancko ale niema odzwierciedlania tego przez gui mimo że komunikat jest

Cytat

Torrent został prawidłowo dodany dla rTorrent.

pozatym recznie odpalając rtorrent komendą

Cytat

/opt/etc/init.d/rtorrent start

wywala

Cytat

/opt/etc/init.d/rtorrent: not found


myślałem że to wina socketa ale uruchamiając rtorrent w tle komendą

Cytat

rtorrent -o import=/opt/etc/rtorrent.conf

port się otwiera

jedyny pomysł jaki mam na ta sytuację to że któryś z plików konfiguracyjnych nie bangla tak jak trzeba ale gdzie szukać skoro powklejałem gotowce shibby'ego

Tak więc lekko zgłupiałemWink i proszę o jakąś wskazówkę gdzie szukać ,co zrobić.B)
Na poprzednich stronach widziałem że ludzie mieli podobne problemy ale nikt nie napisał czy udało im się je obejść.

ps. pomidor nie jest zły ,ale dwuletnie przyzwyczajenie do dd-wrt trochę ciążyWink


Edytowany przez zadzior dnia 14-11-2010 16:45
 
shibby

Cytat

/opt/etc/init.d/rtorrent: not found


brak artybutu execute albo nie zainstalowany bash


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
zadzior
bash zainstalowany

odpowiedz na ls -l /opt/etc/init.d

Cytat

-rwxr-xr-x 1 root root 773 Nov 14 01:24 S80lighttpd
-rwxr-xr-x 1 root root 914 Nov 14 04:21 rtorrent

 
shibby
pokaz zawartosc tego pliku


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
zadzior
z katalogu init.d
rtorrent

#!/opt/bin/bash
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/opt/bin:/opt/sbin

RTORRENT_SOCKET=/tmp/rtorrent
RTORRENT_CONF=/opt/etc/rtorrent.conf

test -x /opt/bin/dtach || ipkg install dtach

start() {
if [ -e ${RTORRENT_SOCKET} ] then
echo "Socket ${RTORRENT_SOCKET} exist. rtorrent not started."
exit 1
fi
echo "Starting rtorrent with dtach on ${RTORRENT_SOKET} ..."
rm -r /tmp/rtorrent 2> /dev/null
rm -r /mmc/download/session/rtorrent.lock 2> /dev/null
/opt/bin/dtach -n ${RTORRENT_SOCKET} /opt/bin/rtorrent -n -o import=${RTORRENT_CONF}
echo "Configuration's setting are located in ${RTORRENT_CONF}"
echo "done."
}

stop() {
echo -n "Shutting down rtorrent... "
killall rtorrent
echo "done"
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
attach)
dtach -a ${RTORRENT_SOCKET}
;;
*)
echo "Usage: $0 (start|stop|restart|attach)"
exit 1
;;
esac


lighttpd

#!/bin/sh

prefix="/opt"
PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/bin:/opt/sbin
NAME=lighttpd
DAEMON=${prefix}/sbin/${NAME}
DAEMON_OPTS="-f ${prefix}/etc/lighttpd/lighttpd.conf"

test -x $DAEMON || exit 0

if [ -z "$1" ] ; then
case `echo "$0" | sed 's:^.*/\(.*\):\1:g'` in
S??*) rc="start" ;;
K??*) rc="stop" ;;
*) rc="usage" ;;
esac
else
rc="$1"
fi

case "$rc" in
start)
echo "Starting web server: $NAME"
rm -r /tmp/php-fcgi* 2> /dev/null
$DAEMON $DAEMON_OPTS
;;
stop)
if [ -n "`pidof $NAME`" ] then
echo "Stopping web server: $NAME"
killall $NAME 2> /dev/null
kill -9 `pidof php-fcgi` 2> /dev/null
rm -r /tmp/php-fcgi* 2> /dev/null
fi
;;
restart)
"$0" stop
sleep 1
"$0" start
;;
*)
echo "Usage: $0 (start|stop|restart|usage)"
;;
esac

exit 0


rtorrent.conf

# This is an example resource file for rTorrent. Copy to
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to
# uncomment the options you wish to enable.

# Minumum amount of peers to connect per torrent, if available.
min_peers = 40

# Minumum amount of peers to connect per torrent.
max_peers = 100

# Same as above but for seeding completed torrents (-1 = same as downloading)
#min_peers_seed = 10
#max_peers_seed = 50

# Maximum number of simultanious uploads per torrent.
max_uploads = 15

# Global download rate in KiB. "0" for unlimited.
download_rate = 0

# Global upload rate in KiB. "0" for unlimited.
upload_rate = 0

# Default directory to save downloaded files. Note it doesn't support
# space yet.
directory = /mmc/download

# Watch a directory for new torrents, and stop those that have been deleted.
schedule = watch_directory,5,5,load_start=/opt/share/torrent/dl/*.torrent
schedule = untied_directory,5,5,stop_untied=

# Close torrents when diskspace is low.
#schedule = low_diskspace,5,60,close_low_diskspace=100M

# Default session directory. Make sure you don't run multiple instance
# of rtorrent using the same session directory. Perhaps using a
# relative path?
session = /mmc/download/session

# The ip address reported to the tracker.
#ip = rakshasa

# The ip address the listening socket and outgoing connections is
# bound to.
#bind = rakshasa

# Port range to use for listening.
port_range = 51514-51515

# Start opening ports at a random position within the port range.
#port_random = yes

# Check hash for finished torrents. Might be usefull until the bug is
# fixed that causes lack of diskspace not to be properly reported.
#check_hash = yes

# Set whetever the client should try to connect to UDP trackers.
#use_udp_trackers = yes

# Alternative calls to bind and ip that should handle dynamic ip's.
#schedule = ip_tick,0,1800,ip=rakshasa
#schedule = bind_tick,0,1800,bind=rakshasa

#
# Do not modify the following parameters unless you know what you're doing.
#

# Hash read-ahead controls how many MB to request the kernel to read
# ahead. If the value is too low the disk may not be fully utilized,
# while if too high the kernel might not be able to keep the read
# pages in memory thus end up trashing.
#hash_read_ahead = 10

# Interval between attempts to check the hash, in milliseconds.
#hash_interval = 100

# Number of attempts to check the hash while using the mincore status,
# before forcing. Overworked systems might need lower values to get a
# decent hash checking rate.
#hash_max_tries = 10

# Max number of files to keep open simultaniously.
#max_open_files = 128

# Number of sockets to simultaneously keep open.
#max_open_sockets =


# Example of scheduling commands: Switch between two ip's every 5
# seconds.
#schedule = "ip_tick1,5,10,ip=torretta"
#schedule = "ip_tick2,10,10,ip=lampedusa"

# Remove a scheduled event.
#schedule_remove = "ip_tick1"

# Stop torrents when reaching upload ratio in percent,
# when also reaching total upload in bytes, or when
# reaching final upload ratio in percent.
# example: stop at ratio 2.0 with at least 200 MB uploaded, or else ratio 20.0
#schedule = ratio,60,60,"stop_on_ratio=200,200M,2000"
schedule = ratio,30,60,stop_on_ratio=200


# Encryption options, set to none (default) or any combination of the following:
# allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
#
# The example value allows incoming encrypted connections, starts unencrypted
# outgoing connections but retries with encryption if they fail, preferring
# plaintext to RC4 encryption after the encrypted handshake
#
# encryption = allow_incoming,enable_retry,prefer_plaintext

# Enable DHT support for trackerless torrents or when all trackers are down.
# May be set to "disable" (completely disable DHT), "off" (do not start DHT),
# "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
# The default is "off". For DHT to work, a session directory must be defined.
#
# dht = disable

# UDP port to use for DHT.
#
# dht_port = 6881

# Enable peer exchange (for torrents not marked private)
#
# peer_exchange = yes

scgi_port = 127.0.0.1:12345

# Do not modify the following parameters unless you know what you're doing.


Edytowany przez zadzior dnia 14-11-2010 20:17
 
ravikjab
Witam,

zainstalowałem wszystkie programy we opisu z pierwszej strony. Gdy odpalam rutorrenta w dzienniku otrzymuje komunikat:
Bad response from server: (500 [error,list]) 500 - Internal Server Error

500 - Internal Server Error


Usuwałem już pliki z katalogu 'session' niestety nie pomaga.
Rtorrent startuje i lighttpd też co widać w procesach:

    1 root      1052 S    /sbin/init noinitrd
    2 root         0 SW   [keventd]
    3 root         0 SWN  [ksoftirqd_CPU0]
    4 root         0 SW   [kswapd]
    5 root         0 SW   [bdflush]
    6 root         0 SW   [kupdated]
    7 root         0 SW   [mtdblockd]
   25 root      1000 S    buttons
   26 root       968 S    console
   28 root      1396 S    /bin/sh
   29 root      1392 S    syslogd -L -s 50
   31 root      1388 S    klogd
   45 root         0 SW   [khubd]
   61 root       500 S    p9100d  -f /dev/usb/lp0 0
   93 root         0 SW   [usb-storage-0]
   94 root         0 SW   [scsi_eh_0]
  107 root      1392 S    telnetd -p 23
  109 root      1020 S    nas /etc/nas.conf /var/run/nas.pid lan
  111 root       920 S    dropbear -p 22 -a
  117 root      1400 S    crond -l 9
  121 root       772 S    rstats
  130 root      1076 S    httpd
  136 root      1608 S    nmbd -D
  137 root      1564 S    nmbd -D
  138 root      1820 S    smbd -D
  142 nobody     972 S    dnsmasq
  186 root       984 S    /opt/bin/dtach -n /tmp/rtorrent /opt/bin/rtorrent -n -o import=/opt/etc/rtorrent.conf
  187 root      9884 S    /opt/bin/rtorrent -n -o import=/opt/etc/rtorrent.conf
  256 root      4840 S    /opt/sbin/lighttpd -f /opt/etc/lighttpd/lighttpd.conf
  270 root     13644 S    /opt/bin/php-fcgi
  333 root      1400 S    udhcpc -i vlan1 -s dhcpc-event
  337 root       648 S    miniupnpd -f /etc/upnp/config
  398 root     13672 S    /opt/bin/php-fcgi
  399 root     13672 S    /opt/bin/php-fcgi
  408 root       976 S    dropbear -p 22 -a
  409 root      1408 S    -sh
  414 root      1396 R    ps


Znalazłem również literówkę w pliku /opt/etc/init.d/rtorrent:

#!/opt/bin/bash
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/opt/bin:/opt/sbin

RTORRENT_SOCKET=/tmp/rtorrent
RTORRENT_CONF=/opt/etc/rtorrent.conf

test -x /opt/bin/dtach || ipkg install dtach

start() {
if [ -e ${RTORRENT_SOCKET} ]; then
echo "Socket ${RTORRENT_SOCKET} exist. rtorrent not started."
exit 1
fi
echo "Starting rtorrent with dtach on ${RTORRENT_SOCKET} ..." -brak litery C w wyrazie SOCKET
rm -r /tmp/rtorrent 2> /dev/null
rm -r /mmc/download/session/rtorrent.lock 2> /dev/null
/opt/bin/dtach -n ${RTORRENT_SOCKET} /opt/bin/rtorrent -n -o import=${RTORRENT_CONF}
echo "Configuration's setting are located in ${RTORRENT_CONF}"
echo "done."
}

stop() {
echo -n "Shutting down rtorrent... "
killall rtorrent
echo "done"
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
attach)
dtach -a ${RTORRENT_SOCKET}
;;
*)
echo "Usage: $0 (start|stop|restart|attach)"
exit 1
;;
esac

Zauważyłem w /opt/var/log/lighttpd/error.log błędy:


2010-11-14 19:26:49: (mod_scgi.c.1799) Connection reset by peer 9 10
2010-11-14 19:26:49: (mod_scgi.c.2564) response not sent, request sent: 4774 connection-fd: 9 fcgi-fd: 10


Proszę o pomoc gdyż nie umie sobie z tym poradzić.


Edytowany przez ravikjab dnia 14-11-2010 21:54
 
zadzior
ravikjab miałem podobne problemy z nim ale nie pamiętam jak to obszedłem bo robiłem rożne wpisy jednocześnie w kilku plikachWink
pierwsze co pamiętam to to że zatrzymałem lighttpd i kombinowałem z soketem,
może spróbuj najnowszy rutorrent 3.1

update: po dokładniejszym prześledzeniu wszystkiego od nowa wiem tyle że
w katalogu tmp nie tworzy się plik rtorrent
po odpaleniu z palca rtorrent śmiga tylko jeśli wejdę do katalogu init.d

Ma ktoś jakieś pomysły co dalej.
poprawienie literówki znalezionej przez ravikjab nic mi nie dało Sad


Edytowany przez zadzior dnia 15-11-2010 16:56
 
ravikjab
Niestety zmiana rutorenta na v 3.1 nic nie zmieniła, komunikat dalej się powtarza. Przeinstalowałem również lighttpd sądząc że to może być przyczyna, niestety bez efektu. Rutorrent wciąż wyswietla komunikat:

Bad response from server: (500 [error,list])     500 - Internal Server Error   

500 - Internal Server Error

 

Polecenie netstat -a | grep 12345 daje odpowiedź:


tcp        0      0 localhost:12345         0.0.0.0:*               LISTEN

oc by potwierdzało że jest nasłuch rtorrenta na porcie 12345, pytanie dlaczego rutorrent 'sieje błedami'.
Zauważyłem jeszcze taką rzecz ze mogę się połączyć nTorentem.
Proszę o pomoc gdyż obsługa rtorrenta za pomocą przeglądarki jest mobilnijsza i wygodniejsza.
Pozdrawiam



 
n00bek2
* ==== Version 3.2 (16.11.2010 r1552 ) ====
# Added plugins [PluginTheme Theme], [PluginRSSURLRewrite RSSURLRewrite], [PluginLoginMgr LoginMgr] [PluginFeeds Feeds], [PluginExtsearch ExtSearch].
# Added support for rtorrent svn [http://libtorrent.rakshasa.no/browser?rev=1189 r1189] (Attention! Not for unstable version 0.8.7)
# API rewritten to support plugins.
# Fixed a lot of errors.
# Removed depreciated plugins Darkpal and Search _([PluginTheme Theme] and [PluginExtsearch ExtSearch] replace these )_

3.1 +pluginy: rss,unpack i inne, działa wyśmienicie, to już ponad rok. Mam PT HS, ustawiony rss na interesujące mnie pozycję i zapominam.
W 3.2, najbardziej mnie kuszą nowe skórkiSmile. "Fixed a lot of errors", hmm. mi w 3.1 wszystko działa B). Dodali mnóstwo szukajek torrent(ExtSearch), ale mnie to nie interesuję.

hm? co to jest Plugin RSSURLRewrite ?


Edytowany przez n00bek2 dnia 17-11-2010 12:37
D-Link DIR-320 | Tomato 1.27.8741 ND USB Ext

milion500100900 TB HDD + drukarnia + callcenterVoIP + jeszcze jeden wolny port USB Smile
 
shibby

Cytat

oc by potwierdzało że jest nasłuch rtorrenta na porcie 12345, pytanie dlaczego rutorrent 'sieje błedami'.
Zauważyłem jeszcze taką rzecz ze mogę się połączyć nTorentem.


no to znaczy ze lighttpd nie tworzy bramki. W rutorrencie ustawiles tez poprawny port rtorrenta?


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
ravikjab
Config lighttpd mam dokładnie taki jak wg opisu na pierwszej stronie:

server.modules              = (
                                "mod_access",
                                "mod_auth",
                                "mod_scgi",
                                "mod_accesslog" )

server.document-root        = "/opt/share/www/torrent/"

server.errorlog             = "/opt/var/log/lighttpd/error.log"

index-file.names            = ( "index.php", "index.html",
                                "index.htm", "default.htm",
            "lighttpd/index.html" )

mimetype.assign             = (
  ".pdf"          =>      "application/pdf",
  ".sig"          =>      "application/pgp-signature",
  ".spl"          =>      "application/futuresplash",
  ".class"        =>      "application/octet-stream",
  ".ps"           =>      "application/postscript",
  ".torrent"      =>      "application/x-bittorrent",
  ".dvi"          =>      "application/x-dvi",
  ".gz"           =>      "application/x-gzip",
  ".pac"          =>      "application/x-ns-proxy-autoconfig",
  ".swf"          =>      "application/x-shockwave-flash",
  ".tar.gz"       =>      "application/x-tgz",
  ".tgz"          =>      "application/x-tgz",
  ".tar"          =>      "application/x-tar",
  ".zip"          =>      "application/zip",
  ".mp3"          =>      "audio/mpeg",
  ".m3u"          =>      "audio/x-mpegurl",
  ".wma"          =>      "audio/x-ms-wma",
  ".wax"          =>      "audio/x-ms-wax",
  ".ogg"          =>      "application/ogg",
  ".wav"          =>      "audio/x-wav",
  ".gif"          =>      "image/gif",
  ".jpg"          =>      "image/jpeg",
  ".jpeg"         =>      "image/jpeg",
  ".png"          =>      "image/png",
  ".xbm"          =>      "image/x-xbitmap",
  ".xpm"          =>      "image/x-xpixmap",
  ".xwd"          =>      "image/x-xwindowdump",
  ".css"          =>      "text/css",
  ".html"         =>      "text/html",
  ".htm"          =>      "text/html",
  ".js"           =>      "text/javascript",
  ".asc"          =>      "text/plain",
  ".c"            =>      "text/plain",
  ".cpp"          =>      "text/plain",
  ".log"          =>      "text/plain",
  ".conf"         =>      "text/plain",
  ".text"         =>      "text/plain",
  ".txt"          =>      "text/plain",
  ".dtd"          =>      "text/xml",
  ".xml"          =>      "text/xml",
  ".mpeg"         =>      "video/mpeg",
  ".mpg"          =>      "video/mpeg",
  ".mov"          =>      "video/quicktime",
  ".qt"           =>      "video/quicktime",
  ".avi"          =>      "video/x-msvideo",
  ".asf"          =>      "video/x-ms-asf",
  ".asx"          =>      "video/x-ms-asf",
  ".wmv"          =>      "video/x-ms-wmv",
  ".bz2"          =>      "application/x-bzip",
  ".tbz"          =>      "application/x-bzip-compressed-tar",
  ".tar.bz2"      =>      "application/x-bzip-compressed-tar"
 )

accesslog.filename          = "/opt/var/log/lighttpd/access.log"

url.access-deny             = ( "~", ".inc" )

$HTTP["url"] =~ "\.pdf$" {
  server.range-requests = "disable"
}

static-file.exclude-extensions = ( ".fcgi", ".php", ".pl", ".py", ".rb" )

server.port                = 9091

server.pid-file            = "/var/run/lighttpd.pid"

#### auth module
auth.debug           = 2
auth.backend                = "plain"
auth.backend.plain.userfile = "/opt/etc/lighttpd/lighttpd.user"

auth.require               = ( "/" =>
                               (
                                 "method"  => "basic",
                                 "realm"   => "rutorrent",
                                 "require" => "user=root"
                               )
                             )


include_shell "cat /opt/etc/lighttpd/conf.d/*.conf"

server.event-handler = "poll"

scgi.server = (
    "/RPC2" =>
        ( "127.0.0.1" =>
            (               
                "host" => "127.0.0.1",
                "port" => 12345,
                "check-local" => "disable",
            )
   )
)

config rutorrenta:


   // configuration parameters

   @define('HTTP_USER_AGENT', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9) Gecko/2008052906 Firefox/3.0', true);
   @define('HTTP_TIME_OUT', 30, true);   // in seconds
   @define('HTTP_USE_GZIP', true, true);
   @define('RPC_TIME_OUT', 15, true);   // in seconds
   @define('LOG_RPC_CALLS', false, true);
   @define('LOG_RPC_FAULTS', true, true);

   $do_diagnostic = true;
   $log_file = '/tmp/errors.log'      // path to log file (comment or make empty to disable logging)
   $saveUploadedTorrents = true;

   $topDirectory = '/'         // Upper available directory. Absolute path with trail slash.

   $scgi_port = 12345;
   $scgi_host = "127.0.0.1";
   $XMLRPCMountPoint = "/RPC2";

   $pathToPHP = ''         // Something like /bin/php. If empty, will be founded in PATH.
   $pathToCurl = ''         // Something like /bin/curl. If empty, will be founded in PATH.

   // For web->rtorrent link through unix domain socket
   // (scgi_local in rtorrent conf file), change variables
   // above to something like this:
   //
   // $scgi_port = 0;
   // $scgi_host = "unix:///tmp/rpc.socket";

?>


natomiast podczas próby połączenia przez rutorrenta w pliku /opt/var/log/lighttpd/error.log tworzy się komunikat:

2010-11-17 18:05:36: (mod_scgi.c.1799) Connection reset by peer 10 11 
2010-11-17 18:05:36: (mod_scgi.c.2564) response not sent, request sent: 4771 connection-fd: 10 fcgi-fd: 11

oraz wciąż w rutorrencie widnieje Bad response from server: (500 [error,list])
Proszę o pomoc !


Edytowany przez ravikjab dnia 17-11-2010 18:09
 
shibby
takie glupie pytanie: odpalasz najpierw rtorrenta a pozniej lighttpd czy odwrotnie?


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
ravikjab
w skrypcie firewall mam:
/opt/etc/init.d/S99rtorrent start (zawrtość jest identyczna jak na pierszej stronie tego tutoriala tylko nie zmieniałem nazwy ale chyba to w niczym nie przeszkadza?)
/opt/etc/init.d/S80lighttpd start

więc najpierw powinien wystartować rtorrent, później lighttpd. W procesach też rtorrent jest przed lighttpd chyba że rtorrent odpala się dłużej i lighttpd odpali się wcześniej, może dać:
/opt/etc/init.d/S99rtorrent start
sleep 10
/opt/etc/init.d/S80lighttpd start
???
Proszę o komentarz.
Pozdrawiam


 
shibby
no to poprawnie. Tak jak mowilem rtorrent + rutorrent to bardzo kaprysne i klopotliwe polaczenie. Ja bym pozostal przy transmission na twoim miejscu.


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
ravikjab
Wolałbym zostać przy rtorrencie gdyż nie obciąża tak procesora a chcę jeszcze zainstalować amule oraz sambę3.
Spróbuje raz jeszcze zainstalować, może tym razem się uda.
Z góry dziękuję za pomoc.
Pozdrawiam

 
shibby
najlepiej wszystko od zera czyli wyczyscic opt i zainstalowac optware od nowa.

ew jak jestes skory do udostepnienia routera (ssh) to moge rzucic na to okiem.


Edytowany przez shibby dnia 18-11-2010 15:10
Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
pagii
Polecam doinstalować jeszcze coreutils

Bez nich rutorrent po zalogowaniu wywalał w zakładce "Dziennik" info ze nie moze znaleźć np "id", "stat". Jeszcze nie wiem po co to, ale może się przydać.

 
ravikjab
'pagii' doinstalowałem coreutils niestety po reboot routera rutorrent wciąż wyświetla te błędy. Czy tego coreutils'a jakoś się konfiguruje ?
'shibby' chętnie udostępnie router tylko napisz co i jak ustawić.
Pozdrawiam

 
pagii
ravikjab, nie konfiguruje się, to po prostu zestaw komend, z których rutorrent potrzebuje "id" i "stat".

 
shibby

Cytat

ravikjab napisał/a:
'pagii' doinstalowałem coreutils niestety po reboot routera rutorrent wciąż wyświetla te błędy. Czy tego coreutils'a jakoś się konfiguruje ?
'shibby' chętnie udostępnie router tylko napisz co i jak ustawić.
Pozdrawiam


udostepnij ssh remote i na pw napisz mi jaki ustawiles port, jakie jest haslo do routera oraz jakie masz ip lub domene dynamiczna jezeli ip masz zmienne.


Proxmox VE: i7-7700T, 64GB RAM, 3x2TB SSD, 1x1TB SSD, 512GB NVMe, Intel X710-DA2 SFP+
VM Router: OpenWRT 22.03.4
VM NAS: Synology DS920+
VM VPS: Debian, WWW, Home Assistant
Switch: Netgear MS510TXPP
Switch: Ubiquiti USW-Flex-mini - szt. 2
Wi-Fi: Ubiquiti U6-Lite - szt. 2
 
Przejdź do forum
Zaloguj
Wprowadź adres e-mail lub nazwę użytkownika

Hasło



Nie masz jeszcze konta? Zarejestruj się.

Zapomniałeś/aś hasła?
Aktualnie online
· Gości online: 7

· Użytkowników online: 0

· Łącznie użytkowników: 24,116
· Najnowszy użytkownik: Ja
Czat
Musisz się zalogować, aby opublikować wiadomość.

Adooni
26-04-2024 14:41
jaki router RMerlin nie pociagne, tomato/ openwrt tak non hilink,

tamtosiamto
23-04-2024 12:35
modem bez smilocka?

man1
22-04-2024 23:27
Czy próbował ktoś uzywac karty voice (z nolimit GB) od tmobile w modemie /routerze? Da się jakoś to zrobić? Bo u mnie neta brak. E3372 Sad

tamtosiamto
31-03-2024 12:54
Wesolego jajka wszytskim forumowiczom Grin

tamtosiamto
28-03-2024 23:24
tak, tak zgadza sie, ale ja pytam o wykluczenie noda na guest network w first set, i to nie dziala

Adooni
24-03-2024 13:16
Guest network is currently designed to allow the first set of each band (2.4G, 5G, 5G-1) available to the AiMesh node

tamtosiamto
24-03-2024 03:03
ale w 1 jest opcja do wyboru - dla calej sieci albo rutera only i wlasnie o tym mowie, ze nie dziala

Adooni
23-03-2024 16:31
w dokumencie asusa jest ze wlasnie dla 1 ma dzialac na nodach tez

tamtosiamto
23-03-2024 15:39
tak, ale nie zmienia to faktu, ze w pierwszej nie dziala wylaczanie aimesh dla goscinnej( a powinno), czyli jest jakis bug. Mam start soft, bo to dsl-ac68 ktory nie jest juz updateowany

Adooni
22-03-2024 18:07
nie, 1 wsza bedzie wszedzie trzeba 2ga zrobic dla kazdego pasma te nie sa przenoszone

71,417,062 unikalnych wizyt