Add new attachment

Only authorized users are allowed to upload new attachments.

List of attachments

Kind Attachment Name Size Version Date Modified Author Change note
sh
configure.sh 0.7 kB 3 11-Mar-2020 09:49 Ben Spink
sh
crushftp_init.sh 3.9 kB 1 25-Oct-2018 04:31 Ben Spink

This page (revision-40) was last changed on 06-May-2021 09:35 by krivacsz

This page was created on 25-Oct-2018 04:31 by Ben Spink

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Difference between version and

At line 1 changed 2 lines
Linux Instructions
Every linux distro is slightly different. This guide is intended to cover the basics and show you around some of the ways you can configure and work with CrushFTP.
Every linux distro is slightly different. This guide is intended to cover the basics and show you around some of the ways you can configure and work with CrushFTP. You can try the single line in Linux for an automated download and install...may work on most distros.\\
{{{
wget -O - https://www.crushftp.com/crush9wiki/attach/Linux%20Install/configure.sh | bash
}}}
At line 4 changed 2 lines
Java
First, make sure Java is installed properly. By default most linux distros come with a free version of Java that won't work with CrushFTP. Make sure its an official Sun java, or other suitable JVM.
__Java__
First, make sure Java is installed properly. By default most linux distros come with an open source version of Java that may not work with CrushFTP. Make sure its an official OpenJDK java, or other suitable JVM.
At line 7 changed 6 lines
java -version
If it mentions GNU, its not the right one.
To run Java, you may need to specify the full path to the java binary. Something possibly like /usr/java/jre1.5.0_11/bin/java. Its going to depend on where you installed it.
Starting CrushFTP
The key here is making sure you are in the CrushFTP directory (so its the working directory), and using the "-d" option to start in daemon mode. If you are not in the right directory when you start CrushFTP, it will start generating a new prefs.xml file and users folder from the new location where you started it.
sudo java -jar CrushFTP.jar -d
{{{java -version}}}
If it mentions GNU, it is not the right one.
To run Java, you may need to specify the full path to the java binary. Something possibly like /usr/java/jre1.8.0_191/bin/java. Its going to depend on where you installed it.
You can also install open java 11 as that works just fine as well.
----
Extract CrushFTP folder ideally into /var/opt/ so it's an easier approach if you have issues finding it over time.
__Start / Stop CrushFTP__
There is a script provided to give you the basics of starting and stopping CrushFTP. It might be overkill for your situation, but you are welcome to use it and modify it for your needs. The script is crushftp_init.sh. Its included with your download of CrushFTP already. You must edit the script the first time you use it to set the correct path in it.
{{{./crushftp_init.sh start
./crushftp_init.sh stop}}}
__Install / Uninstall CrushFTP__
There is a script provided to give you the automated process supported on most Linux distro's of installing and uninstalling CrushFTP. The script is crushftp_init.sh.
{{{./crushftp_init.sh install
./crushftp_init.sh uninstall}}}
__Generating an Admin User__
While you technically can do everything with CrushFTP from the command line and editing text XML files, its much easier to use a web browser to do this. You just need to have an admin user created first.
To make your user for doing this, use a command like this (avoid special characters in the comamnd line password creation):
{{{
java -jar CrushFTP.jar -a "crushadmin" "password"
}}}
This will make a new user, and write it to the default location:
{{''users/MainUsers/crushadmin/''}}
You can now login to the administration console using a web browser. The default ports are:
{{{http://your_ip:8080/
https://your_ip:443/}}}
[Install Video|http://www.crushftp.com/videos/linux_install.mp4] | [Quick Start Video|http://www.crushftp.com/videos/quick_start.mp4]\\
__Alternate Start /Stop CrushFTP Methods__
At line 64 added 2 lines
{{{
At line 67 added 3 lines
}}}
At line 71 added 2 lines
{{{
At line 17 changed 7 lines
Alternate Method
There is a script provided to give you the basics of starting and stopping CrushFTP. It might be overkill for your situation, but you are welcome to use it and modify it for your needs. The script is "crushftp_init.sh". Be sure to get the paths correct when using it.
Generating an Admin User
While you technically can do everything with CrushFTP from the command line and editing text XML files, its much easier to use a GUI to do this. You can use remote administration with CrushFTP in order to remote control a headless server. This lets you have a full GUI controlling the headless linux installations of CrushFTP.
To make your user for doing this, use a command like this: java -jar CrushFTP.jar -a "username" "password" This will make a new user, and write it to the default location...users/lookup_21/username/.
You can then login using this username from a ftp client, or via the remote admin interface of CrushFTP. See my video on setting up a remote admin connection. The basics are opening CrushFTP, clicking manage servers button in the upper right. Add a new item, click on it and set the URL to match the credentials of the user you just made. Click apply, then click OK to close the manage servers window. Finally, select your server from the drop down and wait as CrushFTP connects to your server and gives you a remote admin interface to the GUI of the headless server.
Stopping CrushFTP
}}}
At line 25 changed one line
You can also do it from a script. Let me explain. CrushFTP supports the "SITE QUIT" command if it has been enabled in the User Manager under the Admin tab for a user. So you can have a scripted command that simply logs into the server, issues SITE QUIT, then logs out. The server will then gracefully quit saving any unsaved data to disk before exiting.
You can also do it from a script. CrushFTP supports the "SITE QUIT" command if it has been enabled in the User Manager under the Admin tab for a user. So you can have a scripted command that simply logs into the server, issues SITE QUIT, then logs out. The server will then gracefully quit saving any unsaved data to disk before exiting.
At line 82 added 2 lines
{{{
At line 85 added 2 lines
}}}
At line 29 changed 3 lines
open 127.0.0.1 quote user admin quote pass password quote site quit quote quit
Provided a user named "admin" exist, and they have permission to execute that command, CrushFTP will terminate once the user logs out.
Generating a Password With CrushFTP from the Command Line
{{{
open 127.0.0.1
quote user crushadmin
quote pass password
quote site quit
quote quit
}}}
Provided a user named "crushadmin" exist, and they have permission to execute that command, CrushFTP will terminate once the user logs out.
__Generating a Password With CrushFTP from the Command Line__
At line 33 changed one line
java -jar CrushFTP.jar -p thePassword DES
{{{
java -jar CrushFTP.jar -p DES thePassword
}}}
Version Date Modified Size Author Changes ... Change note
40 06-May-2021 09:35 6.85 kB krivacsz to previous
39 24-Jul-2020 12:59 6.85 kB krivacsz to previous | to last
38 24-Jul-2020 12:53 6.85 kB Ada Csaba to previous | to last
37 24-Jul-2020 12:52 6.846 kB Ada Csaba to previous | to last
36 24-Jul-2020 12:51 6.847 kB Ada Csaba to previous | to last
35 24-Jul-2020 12:50 6.829 kB Ada Csaba to previous | to last
34 24-Jul-2020 12:46 5.906 kB Ada Csaba to previous | to last
33 24-Jul-2020 12:45 5.9 kB Ada Csaba to previous | to last
32 24-Jul-2020 12:43 4.872 kB Ada Csaba to previous | to last
31 24-Jul-2020 12:41 4.845 kB Ada Csaba to previous | to last
30 24-Jul-2020 12:41 4.849 kB Ada Csaba to previous | to last
29 24-Jul-2020 12:39 4.83 kB Ada Csaba to previous | to last
28 24-Jul-2020 12:38 4.828 kB Ada Csaba to previous | to last
27 24-Jul-2020 12:37 4.512 kB Ada Csaba to previous | to last
26 11-Mar-2020 09:01 4.163 kB Ben Spink to previous | to last
25 21-Dec-2018 16:31 3.957 kB Halmágyi Árpád to previous | to last
24 25-Oct-2018 04:31 3.77 kB Halmágyi Árpád to previous | to last
23 25-Oct-2018 04:31 3.496 kB Ben Spink to previous | to last
22 25-Oct-2018 04:31 3.431 kB Ben Spink to previous | to last
21 25-Oct-2018 04:31 3.616 kB Ben Spink to previous | to last
« This page (revision-40) was last changed on 06-May-2021 09:35 by krivacsz
G’day (anonymous guest)
CrushFTP9 | What's New

Referenced by
LeftMenu

JSPWiki