From 3868a0ea8e977a78bd8fb0298f5befc04e8acd4b Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 22 Apr 2024 20:52:15 -0600 Subject: [PATCH] Update Servers & Workflows/Linux/TacticalRMM.md --- Servers & Workflows/Linux/TacticalRMM.md | 29 +++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/Servers & Workflows/Linux/TacticalRMM.md b/Servers & Workflows/Linux/TacticalRMM.md index 71ac36b..d0babab 100644 --- a/Servers & Workflows/Linux/TacticalRMM.md +++ b/Servers & Workflows/Linux/TacticalRMM.md @@ -2,4 +2,31 @@ Tactical RMM is a remote monitoring & management tool built with Django, Vue and Golang. Original Installation Instructions can be found [here](https://docs.tacticalrmm.com/install_server/). !!! Requirements - Ubuntu Server 22.04 LTS, 8GB RAM, 64GB Storage. \ No newline at end of file + Ubuntu Server 22.04 LTS, 8GB RAM, 64GB Storage. + +## Deployment Script +``` +# Check for Updates +sudo apt update +sudo apt install -y wget curl sudo ufw +sudo apt -y upgrade + +# Create TacticalRMM User +useradd -m -G sudo -s /bin/bash tactical +passwd tactical + +# Configure Firewall Rules +ufw default deny incoming +ufw default allow outgoing +ufw allow https +ufw allow ssh +ufw enable && ufw reload + +# Switch to TacticalRMM User +su - tactical + +# Deploy TacticalRMM via Deployment Script +wget https://raw.githubusercontent.com/amidaware/tacticalrmm/master/install.sh +chmod +x install.sh +./install.sh +``` \ No newline at end of file