C
camocim

  • 18 déc. 2017
  • Inscrit 30 oct. 2015
  • Bonjour,

    J'ai un probleme pour me connecter avec mon user sur vsftpd je recois :

    "Erreur GnuTLS -15: An unexpected TLS packet was received.
    Erreur : Impossible d'établir une connexion au serveur"

    Je pense que c'est uniquement avec ce user car j'utilise le script bonobox pour rajouter un user ce dernier se connecte sans probleme en ftp, comment puis-je réparer l'acces pour mon user qui ne fonctionne plus ?

    J'ai récemment modifié les droits de ce user pour qu'il accede au /home d'un autre user (typiquement pour supprimer des torrents)

    MercI

  • Ce site est inaccessible

    XXX.XXX.XXX.XXX n'autorise pas la connexion.
    Effectuez une recherche Google sur seedbox manager.
    ERR_CONNECTION_REFUSED

    je me tape ca à chaque fois, merci Nebukad je viens de mettre exactement comme toi, je dois avoir un autre probleme

  • j'ai changé mon rutorrent.conf comme ca mais sans succes :-(

    server {
    	listen 80 default_server;
    	listen 443 default_server ssl http2;
    	server_name _;
    
    	index index.html index.php;
    	charset utf-8;
    	client_max_body_size 10M;
    
    	ssl_certificate /etc/nginx/ssl/server.crt;
    	ssl_certificate_key /etc/nginx/ssl/server.key;
    
    	include /etc/nginx/conf.d/ciphers.conf;
    
    	access_log /var/log/nginx/rutorrent-access.log combined;
    	error_log /var/log/nginx/rutorrent-error.log error;
    
    	error_page 500 502 503 504 /50x.html;
    	location = /50x.html { root /usr/share/nginx/html; }
    
    	auth_basic "seedbox";
    	auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
    
    	location = /favicon.ico {
    		access_log off;
    		log_not_found off;
    	}
    
    	## début config accueil serveur ##
    
    	location ^~ / {
    	    root /var/www/base;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	    satisfy any;
    	    allow all;
    	}
    
    	## fin config accueil serveur ##
    
    	## début config proxy ##
    
    	location ^~ /proxy {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	## fin config proxy ##
    
    	## début config rutorrent ##
    
    	location ^~ /rutorrent {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    
    	    location ~ /\.svn {
    		    deny all;
    	    }
    
    	    location ~ /\.ht {
    		    deny all;
    	    }
    	}
    
    	location ^~ /rutorrent/conf/ {
    		deny all;
    	}
    
    	location ^~ /rutorrent/share/ {
    		deny all;
    	}
    
    	## fin config rutorrent ##
    
    	## début config munin ##
    
    	location ^~ /graph {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	location ^~ /graph/img {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	    error_log /dev/null crit;
    	}
    
    	location ^~ /monitoring {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	## fin config munin ##
    
    	## début config seedbox-manager ##
    
    
        location /seedbox-manager {
            try_files /seedbox-manager/$uri /seedbox-manager/index.php$is_args$args; 
    
    
        ## fin config seedbox-manager ##
    
        ## config utilisateurs  ##
    
        location /PIERRE {
                include scgi_params;
                scgi_pass 127.0.0.1:5001; #ou socket : unix:/home/username/.session/username.socket
                auth_basic "seedbox";
                auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_pierre";
            }
    
        location /cakebox/ {
            rewrite ^/cakebox(/.*)$ $1 break;
            proxy_pass http://127.0.0.1:81;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_redirect off;
        }
    
        location /cakebox/pierre/ {
            alias /home/pierre/torrents/;
            add_header Content-Disposition "attachment";
            satisfy any;
            allow all;
        }
    
    }
  • aisément est pas vraiment le mot, je tester 2-3 version de fichiers rtorrent.conf

  • Bonjour,

    J'ai moi aussi voulu mettre ma seedbox manager à jour et je n'ai plus acces ni à ip/rutorrent ni à ip/seed-manager, je serais tres reconnaissant d'un petit coup de main

    Merci

    Voici mon rutorrent.conf

    server {
    	listen 80 default_server;
    	listen 443 default_server ssl http2;
    	server_name _;
    
    	index index.html index.php;
    	charset utf-8;
    	client_max_body_size 10M;
    
    	ssl_certificate /etc/nginx/ssl/server.crt;
    	ssl_certificate_key /etc/nginx/ssl/server.key;
    
    	include /etc/nginx/conf.d/ciphers.conf;
    
    	access_log /var/log/nginx/rutorrent-access.log combined;
    	error_log /var/log/nginx/rutorrent-error.log error;
    
    	error_page 500 502 503 504 /50x.html;
    	location = /50x.html { root /usr/share/nginx/html; }
    
    	auth_basic "seedbox";
    	auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
    
    	location = /favicon.ico {
    		access_log off;
    		log_not_found off;
    	}
    
    	## début config accueil serveur ##
    
    	location ^~ / {
    	    root /var/www/base;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	    satisfy any;
    	    allow all;
    	}
    
    	## fin config accueil serveur ##
    
    	## début config proxy ##
    
    	location ^~ /proxy {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	## fin config proxy ##
    
    	## début config rutorrent ##
    
    	location ^~ /rutorrent {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    
    	    location ~ /\.svn {
    		    deny all;
    	    }
    
    	    location ~ /\.ht {
    		    deny all;
    	    }
    	}
    
    	location ^~ /rutorrent/conf/ {
    		deny all;
    	}
    
    	location ^~ /rutorrent/share/ {
    		deny all;
    	}
    
    	## fin config rutorrent ##
    
    	## début config munin ##
    
    	location ^~ /graph {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	location ^~ /graph/img {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	    error_log /dev/null crit;
    	}
    
    	location ^~ /monitoring {
    	    root /var/www;
    	    include /etc/nginx/conf.d/php.conf;
    	    include /etc/nginx/conf.d/cache.conf;
    	}
    
    	## fin config munin ##
    
    	## début config seedbox-manager ##
    
    
            location ^~ /seedbox-manager {
            alias /var/www/seedbox-manager/public;
                include /etc/nginx/conf.d/php-manager.conf;
                include /etc/nginx/conf.d/cache.conf;
            }
    
    
    
    
            ## fin config seedbox-manager ##
    
            ## config utilisateurs  ##
    
            location /PIERRE {
                include scgi_params;
                scgi_pass 127.0.0.1:5001; #ou socket : unix:/home/username/.session/username.socket
                auth_basic "seedbox";
                auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_pierre";
            }
    
     location /cakebox/ {
            rewrite ^/cakebox(/.*)$ $1 break;
            proxy_pass http://127.0.0.1:81;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_redirect off;
        }
    
        location /cakebox/pierre/ {
            alias /home/pierre/torrents/;
            add_header Content-Disposition "attachment";
            satisfy any;
            allow all;
        }
    
    }
    • Bonjour,

      j'ai mis à jour ma seedbox et plex ne fonctionne plus correctement, certains films se lancent d'autres pas, le curseur tourne en rond et la lecture ne démarre pas ... j'ai redémarré le serveur, le service, supprimé la bibliotheque... re scanné les films mais rien n'y fait

      avez vous une idée ?

      Merci
    • DS1010> ssh-keygen -t rsa
      Generating public/private rsa key pair.
      Enter file in which to save the key (/var/services/homes/admin/.ssh/id_rsa):
      Created directory '/var/services/homes/admin/.ssh'.
      Enter passphrase (empty for no passphrase):
      Enter same passphrase again:
      Your identification has been saved in /var/services/homes/admin/.ssh/id_rsa.
      Your public key has been saved in /var/services/homes/admin/.ssh/id_rsa.pub.
      The key fingerprint is:
      08:b5ddfsdfsdfadfadfadfadfadf:6dfsfdsf4 admin@DS1010
      The key's randomart image is:
      +--[ RSA 2048]----+
      | +*++fsdf
      | dfsdfsdfs.....|
      | . sdfo. o..|
      | . . .. sdf
      | o |
      | . |
      | |
      | |
      +-----------------+




      ssh-copy-id -i ~/.ssh/id_rsa.pub pierre@192.168.1.10 -p 22
      -sh: ssh-copy-id: not found


      ?

      je comprends pas

      donc j'ai tenter depuis la seedbox (c'est pas clairement dit ou on tapait les commandes)


      root@ns3011340:~# ssh-copy-id -i ~/.ssh/id_rsa.pub root@7xx.xx.xx.x -p 22

      /usr/bin/ssh-copy-id: ERROR: failed to open ID file '/root/.ssh/id_rsa.pub': No such file or directory

      root@ns3011340:~#