Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

137 total results found

📚 How to Mount NFS Storage for Docker Containers (with Proper Permissions)

Docker

Purpose Mount a remote NFS share on a Linux server for use by Docker containers, ensuring stable operation, correct permissions, and automatic remounting. 1. Install NFS Client on the Server sudo apt update sudo apt install nfs-common -y 2. Create a L...

📘 NFS Permissions Fix -Boot Script

Ubuntu Server documentation Tutorials

Purpose Ensure that a mounted NFS share has correct ownership and permissions for Docker containers every time the server boots. 1. Create a Permission Fix Script Create a simple script that will reset ownership and permissions on the NFS mount point afte...

📚 How to update your Docker containers safely

Docker

Purpose Learn how to update your Docker containers safely, minimizing downtime and preventing accidental data loss. 1. Check Running Containers List all currently running containers to know what services are active: bash docker ps 2. Pull the L...

How to Use Docker Compose

Docker

Purpose Learn how to define and manage multiple Docker containers using a simple YAML configuration file with Docker Compose. 1. Install Docker Compose If you don't already have Docker Compose installed, install it: bash sudo apt update sudo apt ...

How to Mount NFS Storage for Docker Containers

Docker

Purpose Mount a remote NFS share on a Linux server for use by Docker containers, ensuring stable operation, correct permissions, and automatic remounting. 1. Install NFS Client on the Server sudo apt update sudo apt install nfs-common -y 2. Create a...

How to Mount a Local Folder into a Docker Container

Docker

Purpose Bind-mount a local folder into a Docker container, enabling persistent storage and easy sharing of files between host and container. 1. Create the Local Folder Create a folder on the host that you want to share: mkdir -p ~/docker-data/myapp ...

How to Backup and Restore a Docker Volume

Docker

Purpose Backup and restore Docker volumes easily for disaster recovery or migration between servers. 1. List Your Volumes First, identify which volume you want to backup: docker volume ls 2. Backup a Volume Create a compressed backup (.tar.gz) of t...

How to Backup and Restore Docker Volumes

Docker

Purpose Backup and restore Docker volumes to protect persistent container data or migrate storage between servers. 1. Backup a Docker Volume Use tar to archive a Docker volume: docker run --rm \ -v my_volume:/volume \ -v $(pwd):/backup \ alpine ...

How to Configure HAProxy for Docker-based Nextcloud AIO

pfSense Firewall HaProxy

Purpose Configure HAProxy on pfSense to terminate SSL and securely reverse-proxy public HTTPS traffic to an internal Docker Nextcloud AIO server behind your firewall. 1. HAProxy Package Installation on pfSense On pfSense, go to: System → Package Manage...

📚 Making MTU 9000 Persistent on XCP-ng (OVS)

XCP-NG Networking

📚 Guide Overview Title: Making MTU 9000 Persistent on XCP-ng (OVS) Author: MSLS Partners LLC Last Updated: April 2025 Description: This guide explains how to configure MTU 9000 for Open vSwitch (OVS) inside XCP-ng environments. It ensures that jumbo fram...

📚 Deploying Nextcloud AIO with NFS Storage

Docker

📚 Guide Overview Title: Deploying Nextcloud AIO with NFS Storage Author: MSLS Partners LLC Last Updated: May 2025 Description: This guide walks through deploying Nextcloud All-in-One (AIO) using Docker Compose with NFS-mounted storage on Ubuntu Server. I...

Configuring NextCloud

Docker

📌 Purpose This document outlines key configuration insights for the **Nextcloud All-in-One (AIO)** instance running at cloud.mslspartners.com. > ⚠️ Note: This instance is managed by Nextcloud AIO. Most settings shown here are auto-generated and should not be ...

Safely Recreating Nextcloud AIO Docker Containers with NFS Storage

Docker

🎯 Purpose To safely re-create all Docker containers in your Nextcloud AIO deployment while preserving data and configuration stored in persistent volumes. 📍 Requirements NFS share must be online and mounted correctly. Docker and Docker Compose installed....

Run OCC Maintenance Commands in Nextcloud AIO

Docker

🎯 Purpose To perform maintenance, repairs, and database optimizations on your Nextcloud AIO instance using the built-in occ command-line interface. 📍 Requirements Access to the server where Nextcloud AIO is deployed Docker installed and running Containe...

Gluu Server CE Administration

Gluu Server

🔐 Step 1: SSH Into the Host Machine From your local terminal, connect to your Gluu server host: ssh root@your-gluu-server-ip Replace your-gluu-server-ip with your actual IP address or hostname. 📦 Step 2: Log In to the Gluu Chroot Environment Gluu runs i...

Gluu Server certificate import into Java truststore and service restart

Gluu Server

📌 Summary ✔️ Extracted cert using OpenSSL ✔️ Imported cert to Java's cacerts truststore ✔️ Restarted Gluu Jetty services ✔️ Verified fix for SSL trust errors h2>🔧 Trusting Gluu Self-Signed Certificate in Java Truststore 1️⃣ SSH Into the Server ssh r...