At line 2 changed one line |
Here are some instructions on how to setup a virtual server for CrushFTP from [https://www.digitalocean.com/pricing]. This was for CentOS 32bit, 1GB of RAM, $10 per month. They take about 1 minute to have the server available for use. |
Here are some instructions on how to setup a virtual server for CrushFTP from [https://www.digitalocean.com/pricing]. This was for CentOS, 1GB of RAM, $10 per month. They take about 1 minute to have the server available for use. |
At line 4 removed 2 lines |
!Do not use a 64bit VM. If you do, you will need to configure SWAP for the OS yourself as the 64VMs run out of memory very quickly for no reason. The 32bit OS works fine, and won't have any memory issues. This is not a CrushFTP related issue. |
---- |
At line 16 added 2 lines |
|
''On some older distro you might still need to install Java, but on a newer distro, download the openjdk 13 for the OS, unpack it, rename it to Java and place the given Java folder in the root CrushFTP10 folder.'' |
At line 19 changed one line |
yum install java-1.7.0-openjdk |
yum install java-1.8.0-openjdk |
At line 23 changed one line |
apt-get install openjdk-7-jre |
apt-get install openjdk-8-jre |
At line 35 changed one line |
wget https://www.crushftp.com/early7/CrushFTP7_PC.zip |
wget https://www.crushftp.com/early10/CrushFTP10.zip |
At line 40 changed one line |
unzip CrushFTP7_PC.zip |
unzip CrushFTP10.zip |
At line 45 changed one line |
rm CrushFTP7_PC.zip |
rm CrushFTP10.zip |
At line 52 changed one line |
cd CrushFTP7_PC |
cd CrushFTP10 |
At line 65 changed one line |
''Add a sym link for auto startup. This must be the full path to the crushftp_init.sh file.'' |
''Install the daemon.''\\ |
At line 67 changed one line |
ln -s /var/opt/CrushFTP7_PC/crushftp_init.sh /etc/init.d/crushftp |
./crushftp_init.sh install |
At line 70 changed 6 lines |
''Add CrushFTP as a service, start it, and enable it for auto start at bootup.'' |
{{{ |
/sbin/chkconfig --add crushftp |
/sbin/service crushftp start |
/sbin/chkconfig crushftp on |
}}} |
If that fails because it says it can't find Java, then you may need to edit the script file and set the java command location. For example, if you used Java 11, you may need to set java to be: /usr/lib/jvm/java-11-openjdk/jre/bin/java\\ |
At line 77 removed 5 lines |
For some other distros, this may be the proper command: |
{{{ |
update-rc.d crushftp defaults |
}}} |
|