2022-04-09 15:25:18 +00:00
|
|
|
# rmmagent-script
|
2022-04-09 15:25:33 +00:00
|
|
|
Script for one-line installing and update of tacticalRMM agent
|
|
|
|
|
|
|
|
> Now x64, x86, arm64 and armv6 scripts are available but only x64 and i386 tested on Debian 11 and Debian 10 on baremetal, VM (Proxmox) and VPS(OVH)
|
|
|
|
> Tested on raspberry 2B+ with armv7l (chose armv6 on install)
|
|
|
|
|
|
|
|
Script for other platform will be available futher as I adapt script on other platform.
|
|
|
|
Feel free to adapt script and submit me !
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
Download the script that match your configuration
|
|
|
|
|
|
|
|
### Tips
|
|
|
|
|
2022-06-15 13:59:56 +00:00
|
|
|
Download script with this url: `https://github.com/netvolt/LinuxRMM-Script/blob/main/rmmagent-linux.sh`
|
2022-04-09 15:25:33 +00:00
|
|
|
|
|
|
|
## Install
|
|
|
|
To install agent launch the script with this arguement:
|
|
|
|
|
|
|
|
```bash
|
2022-04-09 15:26:44 +00:00
|
|
|
./rmmagent-linux.sh install 'System type' 'Mesh agent' 'API URL' 'Client ID' 'Site ID' 'Auth Key' 'Agent Type'
|
2022-04-09 15:25:33 +00:00
|
|
|
```
|
|
|
|
The compiling can be quite long, don't panic and wait few minutes...
|
|
|
|
|
|
|
|
The argument are:
|
|
|
|
|
|
|
|
2. System type
|
|
|
|
|
|
|
|
Type of system. Can be 'amd64' 'x86' 'arm64' 'armv6'
|
|
|
|
|
|
|
|
3. Mesh agent
|
|
|
|
|
|
|
|
The url givent by mesh for installing new agent.
|
|
|
|
Go to mesh.fqdn.com > Add agent > Installation Executable Linux / BSD / macOS > **Select the good system type**
|
|
|
|
Copy **ONLY** the URL with the quote.
|
|
|
|
|
|
|
|
4. API URL
|
|
|
|
|
|
|
|
Your api URL for agent communication usually https://api.fqdn.com.
|
|
|
|
|
|
|
|
5. Client ID
|
|
|
|
|
|
|
|
The ID of the client in wich agent will be added.
|
|
|
|
Can be view by hovering the name of the client in the dashboard.
|
|
|
|
|
|
|
|
6. Site ID
|
|
|
|
|
|
|
|
The ID of the site in wich agent will be added.
|
|
|
|
Can be view by hovering the name of the site in the dashboard.
|
|
|
|
|
|
|
|
7. Auth Key
|
|
|
|
|
|
|
|
Authentification key given by dashboard by going to dashboard > Agents > Install agent (Windows) > Select manual and show
|
|
|
|
Copy **ONLY** the key after *--auth*.
|
|
|
|
|
|
|
|
8. Agent Type
|
|
|
|
|
|
|
|
Can be *server* or *workstation* and define the type of agent.
|
|
|
|
|
|
|
|
### Example
|
|
|
|
```bash
|
2022-04-09 15:26:44 +00:00
|
|
|
./rmmagent-linux.sh install amd64 "https://mesh.fqdn.com/meshagents?id=XXXXX&installflags=X&meshinstall=X" "https://api.fqdn.com" 3 1 "XXXXX" server
|
2022-04-09 15:25:33 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Update
|
|
|
|
|
|
|
|
Simply launch the script that match your system with *update* as argument.
|
|
|
|
|
|
|
|
```bash
|
2022-04-09 15:26:44 +00:00
|
|
|
./rmmagent-linux.sh update
|
2022-04-09 15:25:33 +00:00
|
|
|
```
|