If you’re looking for open-source software compatible with or similar in function to ITGlue—which is used for IT documentation, password management, asset tracking, and SOP storage—there are a few options worth considering. While ITGlue itself is proprietary and highly integrated with MSP tools, some open-source platforms aim to replicate or…
Category: Website
Top Picks for Web Apps + AD + 2FA
🛡️ 1. Keycloak — Best All-Around Option 🔧 Example: You can run Keycloak as an identity provider (IdP), connect it to AD via LDAP, and use it as the login portal for all your web apps (e.g., Grafana, Jenkins, GitLab, custom apps using OIDC or SAML). 🔐 2. Authelia —…
Open-Source 2FA (Two-Factor Authentication) solutions for Active Directory
🔐 1. privacyIDEA 🔐 2. LinOTP 🔐 3. Authelia 🔐 4. Aegis Secure Login (for Windows) 🧰 5. Keycloak (w/ FreeIPA or LDAP) Bonus: RADIUS + AD + 2FA Gateway Stack If you’re into building your own stack: This setup works great for adding 2FA to VPNs, SSH, and web…
Script to install PartKeepr on Ubuntu Server 22.04+
🚀 Install Script: install_partkeepr.sh Save as install_partkeepr.sh and run with sudo bash install_partkeepr.sh. bash#!/bin/bash# Configurable VariablesDB_NAME=”partkeepr”DB_USER=”partkeepruser”DB_PASS=”StrongPasswordHere!” # Change this!DOMAIN_NAME=”partkeepr.local” # Update this or use your IPecho “>>> Updating system and installing dependencies…”apt update && apt upgrade -yapt install -y apache2 mariadb-server mariadb-client php php-mysql php-gd php-intl php-curl php-xml php-mbstring php-zip…
Installing PartKeepr on an Ubuntu Server
✅ Step-by-Step Installation of PartKeepr on Ubuntu Server 1. System Preparation bashsudo apt update && sudo apt upgrade -ysudo apt install unzip curl git -y 2. Install Apache, PHP, and MariaDB bashsudo apt install apache2 mariadb-server mariadb-client -y Install PHP and required extensions: bashsudo apt install php php-mysql php-gd php-intl…
List of solid Open Source Asset Management Software
🔧 IT Asset Management (ITAM) / CMDB 🏢 Enterprise Asset Management (EAM) / General Assets 📦 Barcode/Inventory Tracking
Active Directory replication troubleshooting
🔍 Step 1: Identify the Replication Issue ⚠️ Step 2: Common Causes and Fixes 1️⃣ Network Connectivity Issues 2️⃣ DNS Misconfiguration 3️⃣ Time Sync Issues 4️⃣ USN Rollback / Tombstoned DC 5️⃣ Global Catalog (GC) & FSMO Role Issues 🔄 Step 3: Force Replication & Reset Services 🛠 Step 4:…