A remote monitoring & management tool, built with Django, Vue and Go.
Go to file
wh1te909 b98fd39ad4 new pipelines agent 2020-09-25 02:10:19 +00:00
.vscode check updates task rework to run all agents in parallel 2020-09-07 13:12:09 -04:00
_modules auto update improvements 2020-09-17 01:52:12 +00:00
api/tacticalrmm full test coverage for accounts 2020-09-25 00:40:04 +00:00
docker totp setup rework 2020-09-22 22:18:54 -04:00
scripts Rename Rename Installed App.ps1 to Rename-Installed-App.ps1 2020-09-03 10:09:46 +10:00
web check for empty string 2020-09-24 17:51:05 +00:00
.gitignore add 32bit mesh agent upload 2020-09-13 00:09:40 +00:00
.travis.yml fix django tests in travis by adding redis service 2020-06-15 17:20:11 +00:00
LICENSE use present for copyright range 2020-03-28 20:21:49 +00:00
README.md Added more detailed update instructions 2020-09-11 10:55:10 +01:00
azure-pipelines.yml new pipelines agent 2020-09-25 02:10:19 +00:00
backup.sh add new celery service to backup script 2020-09-10 17:09:26 +00:00
install.sh add cherrpy to install script since sometimes salt-api doesn't install it during apt install 2020-09-16 07:48:48 +00:00
update.sh check user during update 2020-09-20 21:29:21 +00:00

README.md

Tactical RMM

Build Status Build Status License: MIT Code style: black

Tactical RMM is a remote monitoring & management tool for Windows computers, built with Django and Vue.
It uses an agent written in python, as well as the SaltStack api and MeshCentral

LIVE DEMO

Demo database resets every hour. Alot of features are disabled for obvious reasons due to the nature of this app.

Tactical RMM is currently in alpha and subject to breaking changes. Use in production at your own risk.

Discord Chat

Features

  • Teamviewer-like remote desktop control
  • Real-time remote shell
  • Remote file browser (download and upload files)
  • Remote command and script execution (batch, powershell and python scripts)
  • Event log viewer
  • Services management
  • Windows patch management
  • Automated checks with email/SMS alerting (cpu, disk, memory, services, scripts, event logs)
  • Automated task runner (run scripts on a schedule)
  • Remote software installation via chocolatey
  • Software and hardware inventory

Windows versions supported

  • Windows 7, 8.1, 10, Server 2008R2, 2012R2, 2016, 2019

Installation

Requirements

  • VPS with 4GB ram (an install script is provided for Ubuntu Server 20.04)
  • A domain you own with at least 3 subdomains
  • Google Authenticator app (2 factor is NOT optional)

Docker

Refer to the docker setup

Installation example (Ubuntu server 20.04 LTS)

Fresh VPS with latest updates
login as root and create a user and add to sudoers group (we will be creating a user called tactical)

apt update && apt -y upgrade
adduser tactical
usermod -a -G sudo tactical

switch to the tactical user and setup the firewall

su - tactical
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow ssh
sudo ufw allow http
sudo ufw allow https
sudo ufw allow proto tcp from any to any port 4505,4506
sudo ufw enable && sudo ufw reload

Our domain for this example is tacticalrmm.com

In the DNS manager of wherever our domain is hosted, we will create three A records, all pointing to the public IP address of our VPS

Create A record api.tacticalrmm.com for the django rest backend
Create A record rmm.tacticalrmm.com for the vue frontend
Create A record mesh.tacticalrmm.com for meshcentral

Download the install script and run it

wget https://raw.githubusercontent.com/wh1te909/tacticalrmm/develop/install.sh
chmod +x install.sh
./install.sh

Links will be provided at the end of the install script.
Download the executable from the first link, then open rmm.tacticalrmm.com and login.
Upload the executable when prompted during the initial setup page.

Install an agent

From the app's dashboard, choose Agents > Install Agent to generate an installer.

Updating

Download and run update.sh (Raw)

wget https://raw.githubusercontent.com/wh1te909/tacticalrmm/develop/update.sh
chmod +x update.sh
./update.sh