At line 6 changed one line |
}}} |
}}}\\ |
At line 10 added one line |
user user_update MainUsers user3 email=support@CrushFTP.com first_name=John last_name=Doe |
At line 12 added one line |
user vfs_add MainUsers user3 path=/home/subfolder/ privs=(read)(resume)(view) |
At line 12 changed 12 lines |
}}} |
Where: |
|
"path" is the FTP style path to the folder, relative to the user's virtual root, "/". |
|
"privs" the user VFS folder permissions, can be any combination of (read)(write)(view)(delete)(deletedir)(makedir)(rename)(resume)(share)(slideshow)(invisible)(ratio) |
(replicate)(locked) , for details see our user VFS related docs page. |
|
"url" the true URL pointing to the folder itself. |
|
|
|
user vfs_delete MainUsers user3 path=/home/subfolder/ privs=(read)(resume)(view) |
user user_delete MainUsers user3 |
user list MainUsers users |
user list MainUsers groups |
user list MainUsers inheritance |
}}}\\ |
Where:\\ |
__path__ is the FTP style path to the folder, relative to the user's virtual root, "/". If it's single VFS , then path is to be "/" indeed, otherwise we'll create a Virtual root item, read only, the true VFS will be added below.\\ |
\\ |
__privs__ the user VFS folder permissions, can be any combination of __(read)(write)(view)(delete)(deletedir)(makedir)(rename)(resume)(share)(slideshow)(invisible)(ratio)(replicate)(locked)__, for details see our user [VFS] related docs page.\\ |
\\ |
__url__ the true URL pointing to the folder itself. \\ |
\\ |
__Managing Server's Files__:\\ |
\\ |
These commands require an admin user. They allow administrators to perform file operations directly on the server’s file system, such as createing, renaming, or deleting folders. Use them with caution, as changes affect actual server data.\\ |
Template:\\ |
{{{ |
user adminAction <<action>> <<path>> <<name>> |
or |
user adminAction <<action>> <<path>> <<name>> <<new name>> |
}}}\\ |
Examples:\\ |
{{{ |
user adminAction newFolder /home/ test_subfolder |
user adminAction duplicateItem /home/ test_subfolder |
user adminAction renameItem /home/ test_subfolder test_subfolder_new |
user adminAction deleteItem /home/ test_subfolder_new |
}}}\\ |
\\ |
__Managing User Folder Permissions:__\\ |
\\ |
Template:\\ |
{{{ |
user <<action>> <<user connection group>> <<username>> path=<<the path>> privs=<<the custom privs>> |
}}}\\ |
\\ |
{{{ |
user vfs_add MainUsers user3 path=/home/subfolder/ privs=(read)(resume)(view) |
}}}\\ |
It is used to give a specific user (user3) access to a subfolder within an existing (VFS). It does not replace the user’s existing folder access, but simply adds a new set of permissions—allowing user3 to have different permissions specifically for the /home/subfolder/ location.\\ |
\\ |
{{{ |
user vfs_delete MainUsers user3 path=/home/subfolder/ privs=(read)(resume)(view) |
}}}\\ |
It is used to remove specific permissions for user3 on the /home/subfolder/ location. It does not remove the entire folder access, but only the specified permissions.\\ |
\\ |
__Managing Groups and Inheritance:__\\ |
At line 33 changed one line |
}}} |
}}}\\ |
\\ |
__Managing allowed protocols__:\\ |
You can use the user API call in CrushTunnel.jar to set the field: allowed_protocols to configure Port restrictions\\ |
{{{ |
ftp:0,ftps:0,sftp:0,http:0,https:0,webdav:0, |
}}}\\ |
That is the default, but if you only wanted to allow sftp and https, you could do: |
sftp:0,https:0,\\ |
\\ |
__Managing Jobs:__\\ |
At line 36 changed 2 lines |
job remote MyFindJob |
}}} |
job remote MyFindJob param1=test param2=test |
}}}\\ |
At line 39 removed 2 lines |
\\ |
\\ |
At line 94 added one line |
\\ |
At line 96 added 12 lines |
!Registering CrushFTP service from command line. |
---- |
|
Uses a command to register the CrushFTP license key in case you need to deploy on multiple machines E3 specific, and need to automate the registration. |
The spaces and special characters need to be URL encoded |
|
{{{ |
curl -d command=registerCrushFTP -d registration_name=MY%2520NAME -d registration_email=MYNAME%2540MYEMAIL.COM.EXAMPLE -d registration_code=my_reg_code -u crushadmin:'password' http://127.0.0.1:8080/ |
}}} |
''(long line, so get it all)'' |
\\ |
---- |
At line 119 added 7 lines |
!Delete a user |
---- |
{{{ |
curl -d command=setUserItem -d data_action=delete -d xmlItem=user -d serverGroup=MainUsers -d username=curl_user http://crushadmin:pass@127.0.0.1:8080/ |
}}} |
\\ |
---- |
At line 136 added one line |
Updating a user with certain properties, the missing/updated xml keys can be supplied in line, below example sets the password as the literal "thisismypass" |
At line 138 added 6 lines |
{{{ |
curl -d command=setUserItem -d data_action=update -d xmlItem=user -d serverGroup=MainUsers -d username=curl_user --data-urlencode 'user=<?xml+version="1.0"+encoding="UTF-8"?>+<user+type="properties"><password>thisismypass</password></user>' http://crushadmin:pass@127.0.0.1:8080/ |
}}} |
''(long line, so get it all)'' |
\\ |
\\ |
At line 75 changed 2 lines |
}}} |
''(long line, so get it all)'' |
}}}\\ |
''(long line, so get it all)''\\ |
At line 151 added 6 lines |
Add a specific permission to a subfolder:\\ |
{{{ |
curl -d command=setUserItem -d data_action=update_vfs -d xmlItem=user -d serverGroup=MainUsers -d username=user1 -d permissions@permissions.XML -u crushadmin:passw http://127.0.0.1:8080/ |
}}}\\ |
''(long line, so get it all)''\\ |
\\ |
At line 90 changed one line |
curl -d command=setUserItem -d xmlItem=groups -d data_action=add -d group_name=MyGroup -d usernames=user1;user2 -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=groups -d serverGroup=MainUsers -d data_action=add -d group_name=MyGroup -d usernames="user1;user2" -u crushadmin:pass http://127.0.0.1:8080/ |
At line 96 changed one line |
curl -d command=setUserItem -d xmlItem=groups -d data_action=delete -d group_name=MyGroup -d usernames=user1;user2 -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=groups -d serverGroup=MainUsers -d data_action=delete -d group_name=MyGroup -d usernames="user1;user2" -u crushadmin:pass http://127.0.0.1:8080/ |
At line 102 changed one line |
curl -d command=setUserItem -d xmlItem=groups -d data_action=delete -d group_name=MyGroup -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=groups -d serverGroup=MainUsers -d data_action=delete -d group_name=MyGroup -u crushadmin:pass http://127.0.0.1:8080/ |
At line 108 changed one line |
curl -d command=setUserItem -d xmlItem=inheritance -d data_action=add -d inheritance_name=AdmminTemplate -d usernames=user1;user2 -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=inheritance -d serverGroup=MainUsers -d data_action=add -d inheritance_name=AdminTemplate -d usernames="user1;user2" -u crushadmin:pass http://127.0.0.1:8080/ |
At line 114 changed one line |
curl -d command=setUserItem -d xmlItem=inheritance -d data_action=delete -d inheritance_name=AdmminTemplate -d usernames=user1;user2 -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=inheritance -d serverGroup=MainUsers -d data_action=delete -d inheritance_name=AdminTemplate -d usernames="user1;user2" -u crushadmin:pass http://127.0.0.1:8080/ |
At line 120 changed one line |
curl -d command=setUserItem -d xmlItem=inheritance -d data_action=delete -d inheritance_name=AdmminTemplate -u crushadmin:pass http://127.0.0.1:8080/ |
curl -d command=setUserItem -d xmlItem=inheritance -d serverGroup=MainUsers -d data_action=delete -d inheritance_name=AdminTemplate -u crushadmin:pass http://127.0.0.1:8080/ |
At line 123 changed one line |
|
\\ |
!!Job:\\ |
\\ |
At line 209 added 11 lines |
|
Run a job via command line: |
{{{ |
java -jar CrushTunnel.jar inline_script "connect https://admin:pass@server.com/;job remote MyFindJob param1=test;quit;" |
}}} |
or from an execute task of CrushTask do: |
{{{ |
separator: ~ |
command: java |
Parameters: -jar~CrushTunnel.jar~inline_script~connect https://admin:pass@server.com/;job remote MyFindJob param1=test;quit; |
}}} |
At line 221 added 30 lines |
\\ |
!!IP Restrictions:\\ |
\\ |
Unban an ip (only for full admin users):\\ |
\\ |
{{{ |
curl -d command=unban -d ip=192.168.0.5 -u crushadmin:pass http://127.0.0.1:8080/ |
}}}\\ |
\\ |
\\ |
Modify IP restrictions (only for full admin users):\\ |
\\ |
{{{ |
curl -d command=modifyIpRestrictions -d start_ip=192.168.0.5 -d stop_ip=192.168.0.5 -d type=A -d method=add -u admin:pass http://127.0.0.1:9090 |
}}}\\ |
\\ |
{{{ |
curl -d command=modifyIpRestrictions -d start_ip=192.168.0.5 -d stop_ip=192.168.0.5 -d type=A -d method=delete -u admin:pass http://127.0.0.1:9090 |
}}}\\ |
\\ |
!!Update:\\ |
\\ |
Perform update: |
{{{ |
DMZ: |
curl -d command=updateNow -u crushadmin:pass https://myserver.com/dmz_instance_name/ |
|
INTERNAL: |
curl -d command=updateNow -u crushadmin:pass https://myserver.com/ |
}}} |