At line 1 changed one line |
CrushSync is an enterprise only feature. It provides real time file synchronizations through CrushFTP. The client runs on the local machine monitoring the specified folders. When a change is detected, the change is propagated to the CrushFTP server, and any other clients subscribed to that folder now get those same changes. Only the changed parts of large files are sent, and bandwidth acceleration can be used as well. Client configurations can be branded, localized, and pre-configured for deployment. The client is launched as an automatically updating application over a web connection. You as the server administrator control when you want to update the application for end users. |
CrushSync is an enterprise only feature. It provides real time file synchronizations through CrushFTP. The client runs on the local machine monitoring the specified folders. When a change is detected, the change is propagated to the CrushFTP server, and any other clients subscribed to that folder now get those same changes. Only the changed parts of large files are sent, and bandwidth acceleration can be used as well. |
At line 20 changed one line |
Before users will be able to download and run CrushSync, you need to go into the user manager, WebInterface section, Buttons section and add the two new buttons for 'Download CrushSync', and 'Manage Syncs'. |
The app itself is located here: \\ |
Windows: [https://www.crushftp.com/early10/CrushSync/CrushSync_windows.exe]\\ |
macOS: [https://www.crushftp.com/early10/CrushSync/CrushSync_macOS.zip]\\ |
At line 27 added one line |
[attachments|sync_webinterface.png]\\ |
At line 26 changed 2 lines |
Then you can click the button to download the sync client if it has been added onto your user in the User Manager. (Prior step.)\\ |
You will be asked for two passwords. The first is your current account password for the WebInterface. The second is the password for managing the sync agent. Use something secure, this password will be needed every time you open the 'Sync Manager' to control your sync agent(s). |
[attachments|crushsync.png]\\ |
On windows, you will have an icon in your system tray for the sync agent and on OS X you will have an icon in your menubar. There is no management UI on the machine, you do all of that through the WebInterface in the 'Sync Manager'.\\ |
[attachments|crushsync_menu.png] |
At line 29 removed 4 lines |
[attachments|sync_webinterface.png] |
|
On windows, you will have an icon in your system tray for the sync agent and on OS X you will have an icon in your menubar. There is no management UI on the machine, you do all of that through the WebInterface in the 'Sync Manager'. |
|
At line 38 changed one line |
[attachments|crushsync.png]\\ |
[attachments|crushsync_web.png]\\ |
At line 54 changed one line |
!!!Customizing the Sync |
!!!Special, macOS only daemon install requirement |
At line 56 added 7 lines |
macOS can no longer load our 'magical' native library that we use for listening into filesystem events. We have an alternative method, but it requires a one time daemon install command.\\ |
\\ |
First, find your CrushSync folder, and decide where its going to stay...forever, no changes to it, no renaming the folder, etc.\\ |
{{{ |
cd /Applications/CrushSync_macOS/CrushSync.app/Contents/Resources/ |
sudo Java/bin/java -cp CrushTunnel.jar com.crushftp.client.CrushSyncFSWatchServer -i |
}}} |
At line 57 changed 16 lines |
NOTE!! You will need CrushFTP 6.4.0_81 and above for the below instructions to work correctly. |
|
You can give the client a custom name, so it doesn't have to be called CrushSync |
|
When you add the download Sync client button in the UserManager, UserName, WebInterface, Buttons section, you can specify a name for it, and the given name will be used instead of the CrushSync name. |
|
Customizations are made in the User Manager, WebInterface, custom javascript section. Add these example lines in there. |
CrushSync |
localizations.syncAppName = 'MySyncName'; |
|
It can't run as a service, but it can run at startup when you login to the user account. There is a menu option in the systray to help with that part. |
|
That is it. All references in what it downloads, the service name, the window titles, etc will be MySyncName. |
|
The manageSyncs interface is generic that it just labels itself as Manage Syncs and not CrushSync. So no changes are needed there. When you add the buttons, you can label the buttons however you like. But don't change their action values. |
|
Enter your admin password and your done. If you laterened to remove that daemon, change the "-i" to a "-r". |
At line 74 changed 2 lines |
You can install CrushSync as a service to have an unattended machine running the sync. Use a copy of the "service" folder from an installed CrushFTP machine. Modify the wrapper.conf file to the below:\\ |
|
!!! Special, Windows service mode install |
---- |
Make sure the "Start with login" option is not set in the tray icon context menu, if it is, remove it. Close CrushSync if it is running. Then open an elevated CMD or PowerShell session, change directory into the installation folder, usually C:\Users\Administrator\AppData\Local\Programs\CrushSync\Resources , issue below command |
At line 77 changed 22 lines |
wrapper.java.command=java |
wrapper.working.dir=C:\\Users\\Username\\CrushSync\\ |
wrapper.java.app.mainclass=com.crushftp.Daemon |
wrapper.console.visible=false |
wrapper.console.title=CrushSync |
|
wrapper.ntservice.name=CrushSync |
wrapper.ntservice.displayname=CrushSync |
wrapper.ntservice.description=CrushSync |
|
wrapper.tray=false |
|
wrapper.logfile.format=LPNTM\r\n |
wrapper.logfile=wrapper.log |
wrapper.logfile.maxsize=10m |
wrapper.logfile.maxfiles=10 |
|
wrapper.on_exit.0=SHUTDOWN |
wrapper.on_exit.default=RESTART |
|
wrapper.java.classpath.1=CrushSync.jar |
wrapper.java.additional.1=-Xmx512m |
.\Java\bin\java.exe -jar CrushTunnel.jar inline_script "service sync;quit" |
At line 100 changed 2 lines |
|
Then install the service with: |
Check the state of service in the Services console , or from command line |
At line 103 changed one line |
java -jar wrapper.jar -i wrapper.conf |
sc query "CrushSync Server" |
At line 106 changed one line |
This assumes a CrushSync folder already exist from running the CrushSync.jnlp file one time. |
''Alternatively you can do a simpler install using the CrushTunnel.jar file from your WebInterface folder instead of using that buried deep folder as referenced above. Just be sure to copy your existing prefs.XML into it as you cannot access a systray to configure the service version. |