Setting Up a RabbitMQ Mirror Cluster with Docker
To establish a RabbitMQ mirror cluster, it is essential to first configure a standard RabbitMQ cluster. In a standard cluster setup, metadata such as exchanges, bindings, and queues are replicated across all nodes in the cluster. However, the actual contents of a queue reside only on its designated node. Clients can connect to any node in the c ...
Posted on Mon, 18 May 2026 18:49:05 +0000 by gateway69
Comprehensive Docker Setup and Usage Guide
Installing Docker on Linux
curl -fsSL https://get.docker.com | sudo bash
If the installation complains about missing dependencies:
sudo apt-get -f install
Granting Non-root Access
sudo usermod -aG docker $USER
newgrp docker
Verify the daemon is reachable:
docker info
Speeding Up Pulls with a Mirror
Create or edit /etc/docker/daemon.json:
{
...
Posted on Mon, 18 May 2026 08:00:41 +0000 by sellfisch
Docker Network Fundamentals
Computer Network Model
Network Interfaces in Linux
(1) View network interfaces (NICs)
ip link show
ls /sys/class/net
ip a
ifconfig
(2) Network Interface Details
- Interpreting `ip a` output:
State: UP/DOWN/UNKNOWN
link/ether: MAC address
inet: Assigned IP address
- Configuration files:
cat /etc/sysconfig/network- ...
Posted on Mon, 18 May 2026 01:12:04 +0000 by Fractal
Building an Nginx Docker Image Using AlmaLinux
Creating the Base Image
This process builds an Nginx imagee from AlmaLinux:latest that automatically starts Nginx when containers launch.
Setting Up Files
mkdir ~/docker-nginx
cd ~/docker-nginx
echo 'Nginx operational' > index.html
Dockerfile Configuration
FROM almalinux:latest
RUN yum clean all && \
yum -y install epel-release ...
Posted on Sun, 17 May 2026 22:53:27 +0000 by stephaneey
Migrating GitLab Omnibus Instances Between Docker Hosts and Resolving Permission Errors
Environment Specifications
OS: CentOS 7
Container Engine: Docker v26.0.0
Image: twang2218/gitlab-ce-zh
Migration Workflow
Pre-Migration Preparation
Identify the initial launch configuration from the source machine.
docker inspect --format='{{json .HostConfig.PortBindings}}' gitlab > bindings.json
Document volume mounts to ensure consisten ...
Posted on Sun, 17 May 2026 18:41:23 +0000 by ElectricShaka
Setting Up Azure DevOps Build Agents on CentOS 7
Azure DevOps provides powerful CI/CD capabilities, but setting up self-hosted agents can be challenging. This guide demonstrates a streamlined approach to configuring Azure DevOps agents on CentOS 7 servers. Ensure you have administrative access to a CentOS 7 machine before proceeding.### Obtaining the Linux Agent Package
Navigate to your Azure ...
Posted on Sun, 17 May 2026 02:18:44 +0000 by madsporkmurderer
Automated Data Ingestion Pipeline Using Kubernetes and Docker Containers
Infrastructure Setup
Prerequisites
Ensure the cluster infrastructure is active on CentOS 7 hosts. The node toploogy includes:
Role
IP Address
Master Node
192.168.138.110
Slave Node 1
192.168.138.111
Slave Node 2
192.138.138.112
1. Database Provisioning
1.1 Resource Isolation
Define a dedicated namespace to isolate database resourc ...
Posted on Sat, 16 May 2026 21:18:39 +0000 by Gregg
Running TDengine in a Single-Node Docker Container on Alibaba Cloud ECS
="zh">
TDengine is a time-series database optimized for IoT workloasd. Its design feels like a hybrid between MySQL sharding proxies and MongoDB’s document model, yet it remains approachable for newcomers. Below is a concice guide to spinning up a single-node instance inside Docker on an Alibaba Cloud Elastic Compute Service (ECS) ...
Posted on Sat, 16 May 2026 20:26:17 +0000 by prkarpi
Deploying Jira and Bugzilla with Docker Compose
Deploying Jira
For deploying Jira, a common approach involves using a pre-configured Docker image. Ensure you have the necessary license or are using it in a compliant manner. The deployment typically requires a database connection, which we will configure in the docker-compose.yml file.
Deploying Bugzilla
Bugzilla is a web-based bug tracking s ...
Posted on Sat, 16 May 2026 11:41:51 +0000 by jonners
Configuration Guide for PartNet Annotation System Deployment
The PartNet annotation system is a web-based tool for 3D part segmentation, consisting of:
Backend: Node.js + MySQL
Frontend: Browserify-based aplpication
Prerequisites
System Requirements
OS: Ubuntu 18.04/20.04 (22.04/24.04 supported with Docker)
Software:
Node.js v10 (via nvm)
MySQL 5.7
Python 3
Build tools (gcc, make, cmake)
Initial S ...
Posted on Sat, 16 May 2026 06:06:23 +0000 by faizanno1