Installation
Install Ubuntu
You will need a linux VM (or bare metal), I tested this on Ubuntu 20.04
.
You can use this guide.
Install Tactical RMM
Prerequisites
- Device or software capable of TOTP authenticator
- Real Domain
Port Forwards
If you plan to use this with clients on remote locations, you will need to do some port forwarding on your firewall.
- 4222/tcp
- 443/tcp
Tactical RMM recommends to let the script generate the SSL Certs via DNS Challenge.
So you are gonna need a real domain
.
Also you will have to create 3 subdomains
(A or CNAME records) and 1 TXT record (Exact value will be given during the installation).
api
.yourdomain.comrmm
.yourdomain.commesh
.yourdomain.com
Of course you can name the subdomains
however you want.
Create the 3 subdomains
now.
SNI (Optional tip)
If you are running more services on port 443, you can use HAProxy with SNI to map the traffic to the correct internal service.
Note: If you use HAProxy in TCP mode, you need to set the timeouts as follows: Backend: Connection timeout:
300000
, Server timeout:300000
, Retries:3
Frontend: Client timeout:300000
Let’s begin the installation
Update system and check that required packages are installed
sudo apt updatesudo apt install -y wget curl sudo ufwsudo apt -y upgrade
If you are using root
user… create a new user
sudo useradd -m -G sudo -s /bin/bash tacticalsudo passwd tactical
Lock down VM’s firewall
If your VM is behind a firewall you can skip this step.
sudo ufw default deny incomingsudo ufw default allow outgoingsudo ufw allow httpssudo ufw allow proto tcp from any to any port 4222
Allow SSH for VM management, you can skip this and you can manage VM from withing Xen Orchestra’s UI
Restrict SSH to specific IP/networks
X.X.X.X
can be either:
- IP (eg. 10.1.1.150)
- Network (eg. 10.1.1.0/24)
sudo ufw allow ssh tcp from X.X.X.X to any port 22
OR
Allow all SSH
sudo ufw allow ssh
Enable and activate firewall
ufw enable && ufw reload
Run the installer
wget https://raw.githubusercontent.com/amidaware/tacticalrmm/master/install.shchmod +x install.sh./install.sh
Follow on-screen instructions
Depending on your hardware, this might take long time
Once this is finished, visit https://rmm.yourdomain.com