-
Notifications
You must be signed in to change notification settings - Fork 125
First try to STOP torrent and then START torrent and also try to force recheck. If it doesn't work for you, remove all the torrents from the client (keeping the data), and import them all via ruTorrent 10 at a time.
Disable Oblivion on ruTorrent plugins tab and then use settings to change your theme.
3. My FTP client is giving me the error "530 Non-anonymous sessions must use encryption", what should I do?
The FTP server installed by this script is configured to encrypt your transfered files. Enable SSL (Auth TLS explicit) in your FTP client.
If you execute a "sudo fdisk -l" on your 2GS box you'll see that there is only 477618176 bytes = 455GB. Look: http://puu.sh/1LZ2V.
When a company says that you have a 500GB HD actually you have a smaller one, because their calculation is 500 x 1000 x 1000 = 476GB and not 500 x 1024 x 1024 = 500GB.
You drive does not have 500GB, actually its 476GB (500000/1024/1024) and you have 10GB on the root (/) partition and some used in /home, according to drauka, that enlighted this for me on IRC, "you should also try reducing the system reserved block % that should get you back some space". And you also can try to partition it yourself, you can claim around 4GB from / that, but you would have to move your /var to /home so you don't get a disk full shortly.
You might have different partitioning system. Edit file /var/www/rutorrent/conf/users//config.php and set $topDirectory to /, also check if $homeDirectory is pointing to the the user home dir.
- Download and install an OpenVPN Client
- Download VPN client configuration files from your server
(http://<server ip address>/rutorrent/vpn.zip)
- Open your VPN client and create a new connection using configuration files
- Check if all needed files are present in your vpn.zip: ca.crt ca.key client1.crt client1.csr client1.key .ovpn
- If they are not, reinstall OpenVPN, and follow all steps carefully, executing:
installOpenVPN
- Download VPN client files again and check if all files are present.
Use the internal command installRTorrent <rTorrent version>
. Examples:
installRTorrent 0.9.2
installRTorrent 0.9.3
Open file /etc/apache2/sites-available/default and change from
<Directory />
Options FollowSymLinks
AllowOverride All
AuthType Digest
AuthName "documentroot"
AuthDigestProvider file
AuthUserFile /etc/apache2/htpasswd
Require user <username>
</Directory>
To
<Directory />
Options FollowSymLinks
AllowOverride All
Require user <username>
</Directory>
You wich basically removes all Auth lines from it. Note that you'll have to do this change twice in the same file, in sections <VirtualHost *:80>
and <VirtualHost *:443>
.
SABnzbd is not installed from a package. I had a lot of problems with the "package" version of it, so I decided to install from sources. Check the installation script file /etc/seedbox-from-scratch/installSABnzbd
and use it to install a newer version.
Yes, you must.
This script is intended to be run on a new installed system and, assuming that you really are on a new system, there is no other user than root. If you are logged with a different user, at least an user creation command was executed in your system and you should check what else was or this script might not work and you might even loose access to your box.
No, you can't.
Script will create this user it asks for and you already have a root user, so things will break in the process. Also, root is not a normal user, you shouldn't being using it for common tasks, don't do that.
Yes and No.
You will not be able to SSH to your box using root account, but you can SSH to your box using your newly created user and then, to become root, run:
sudo su -
This is a security mesure and I will not change that.
14. I don't care about security, so how do I reenable root SSH access to the box after running this script?
Edit sshd_config file:
nano /etc/ssh/sshd_config
Change
PermitRootLogin no
To
PermitRootLogin yes
Every time you hit "apt-get upgrade" or do a Webmin upgrade on this box you're risking breaking the hell out of it. Sabnzbd just looks like being installed using apt-get, but it is not, to make it work automatically it was installed manually. vsftpd has serious issues in its newer version, so I'm using an old one, installed from an old Ubuntu package.
So the answer is yes, you can, but you shouldn't, unless you have enough Linux knowlegde to fix all the problems it may cause.
Use changeUserPassword
at the SSH command line. It will change only your apache (ruTorrent) password, if you also need to change your Linux password, use your Linux passwd
command.
To use it, you'll need to provide those 3 arguments:
- username
- password
- realm (wich, if you have made no changes to apache, is rutorrent or documentroot)
Example:
changeUserPassword notos mypassw0rd rutorrent
You can run this script on Debian based distributions, here is a list of some tested
Debian 6.x | YES | Exaustively tested |
Debian 7.x | NO | |
Ubuntu 10.04 | NO | Installation is broken |
Ubuntu 11.04 | NO | Might work, but you may see some glitches |
Ubuntu 11.10 | YES | Tested |
Ubuntu 12.04 | YES | Exaustively tested |
Ubuntu 12.10 | NO | Will work, but you'll have some glitches |
18. ruTorrent interface is giving me this error "No connection to rTorrent. Check if it is really running. Check $scgi_port and $scgi_host settings in config.php and scgi_port in rTorrent configuration file.", what can I do to solve it?
In this case we have two main possibilities:
a) rTorrent is not running, check running this at your SSH prompt:
ps aux | grep rtorrent | grep -v grep
and you should see something like that:
notos 26857 0.0 0.0 26492 1352 ? Ss Mar08 0:48 SCREEN -d -m -S rtorrent rtorrent
notos 26859 3.7 11.5 470820 233660 pts/0 Ssl+ Mar08 858:24 rtorrent
If your rTorrent is not running then you'll have to look deeper in the problem, something really wrong might have happened during
b) rTorrent port is not configured as it should. In this case you can try two different things to solve it:
FIRST METHOD
-
Find the value for your scgi port at:
http://xxxxxxxxx.kimsufi.com/seedboxInfo.php
-
Edit config.php using nano:
sudo nano /var/www/rutorrent/conf/users/<username>/config.php
-
Change the value for the line "$scgi_port" to what you found at seedboxinfo.php
-
Hit CTRL+F5 on your browser to completely reload your page
SECOND METHOD
Follow all steps from first method, but:
- Edit config.php using nano:
sudo nano /var/www/rutorrent/conf/config.php
You cannot disable SSL from SFTP, because it's not really using FTP protocol, but SSH protocol, wich is always secure and, yes, might be slow.
What you can do instead is to configure your client to connect using FTP+SSL, also secure, but faster, because it uses FTP protocol with encryption.
Here's a table to show you better the differences between them:
Service | Protocol | Secure | Script default port | Worldwide default port |
SFTP | SSH | YES | 21976 | 22 |
FTP+SSL | FTP | YES | 21201 | 21 |
FTP | FTP | NO | 21201 | 21 |
- Edit vsftpd configuration file:
sudo nano /etc/vsftpd.conf
- Add to it those 2 lines:
force_local_data_ssl = NO
force_local_logins_ssl = NO
-
Save and exit
-
Restart vsftpd service
sudo service vsftpd restart