Complete Process of Deploying Oracle Linux with Docker

Oracle Linux is not just an ordinary RHEL-compatible distribution; it is an enterprise-level system tested with over 120,000 hours of workloads daily by Oracle. It comes with exclusive features such as Ksplice (zero-downtime kernel patching) and DTrace (real-time diagnostics), making it particularly suitable for use with Oracle databases, middleware, and other ecosystem products. Deploying it … Read more

Packaging Python 3.13 Image Using Ubuntu 24.04

Creating Dockerfile FROM ubuntu:24.04 as builder ADD https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz /tmp/ RUN sed -i [email protected]@mirrors.tuna.tsinghua.edu.cn@ /etc/apt/sources.list.d/ubuntu.sources && \ sed -i [email protected]@mirrors.tuna.tsinghua.edu.cn@ /etc/apt/sources.list.d/ubuntu.sources && \ apt-get -qy update && \ DEBIAN_FRONTEND=noninteractive apt-get -qy install –no-install-recommends \ build-essential \ libbz2-dev \ libncurses5-dev \ libncursesw5-dev \ libgdbm-dev \ libssl-dev \ liblzma-dev \ libsqlite3-dev \ tk-dev \ uuid-dev \ libreadline-dev \ … Read more

A Practical Guide to JSON Processing in Linux Using the jq Command Line Tool

<span>JSON</span> processing is a common operation in operations and maintenance,<span>API</span> returns, configuration files, log analysis, etc. all involve it. Especially in <span>K8S/Docker</span> operation and maintenance scenarios,<span>JSON</span> data processing is a routine task. This article introduces a <span>Linux JSON</span> data processing tool – <span>jq</span>, which is much more powerful than <span>grep</span> and <span>awk</span>. This is what … Read more

Complete Guide to Deploying Rocky Linux with Docker

Rocky Linux, as the optimal alternative after CentOS has ceased updates, is fully compatible with RHEL and offers 10 years of long-term support, making it the preferred choice for enterprise-level server deployments. Deploying via Docker can completely resolve traditional deployment issues such as “environment inconsistency, cumbersome migration, and chaotic version management,” making it particularly suitable … Read more

RustFS Installation and Deployment

Download RustFS and select the version suitable for your system, supporting Windows, Linux, macOS, and Docker deployment. Start experiencing a high-performance distributed storage system. MacOS Homebrew Installation 1brew tap rustfs/homebrew-tap 2brew install rustfs 3rustfs –version Binary Installation Architecture: aarch64 1curl –progress-bar -O https://dl.rustfs.com/artifacts/rustfs/release/rustfs-macos-aarch64-latest.zip 2unzip rustfs-macos-aarch64-latest.zip 3chmod +x rustfs 4./rustfs –version Architecture: x86_64 1curl –progress-bar -O … Read more

Kolla-Ansible One-Click Deployment Guide for OpenStack

Kolla-Ansible is a powerful tool for deploying OpenStack in a containerized manner. It utilizes Docker containers and Ansible automation technology to help you quickly set up a production-grade OpenStack cloud platform. Below, I will outline the core steps for deployment, key configurations, and some practical suggestions. 📦Understanding the Advantages of Kolla-Ansible The main reasons for … Read more

Rust Axum Backend Series: Practical Implementation of Docker, Database, and Connection Pool

Introduction As the Rust language becomes increasingly popular in backend development, Axum, a high-performance and type-safe web framework, is gaining favor among developers. This article will guide you on how to integrate Docker and PostgreSQL database into an Axum project, and provide an in-depth understanding of how database connection pools work, which are fundamental elements … Read more

Mastering Ansible: Making Docker Deployment as Simple as “Copy and Paste”!

Mastering Ansible: Making Docker Deployment as Simple as "Copy and Paste"!

Ansible is an automation tool written in Python that enables automated management of clusters and performs common operational tasks.Many companies today utilize cluster deployment services, ranging from a few virtual machines to hundreds or thousands. Sometimes, it is necessary to perform operational tasks on a single cluster or multiple clusters simultaneously, and this is where … Read more

Installing and Using MinIO on Linux

Installing and Using MinIO on Linux

MinIO is a high-performance cloud-native object storage solution that is compatible with the Amazon S3 API. Below is a detailed explanation of its installation and deployment on Linux systems. 1. MinIO Installation Methods Method 1: Direct Installation from Binary Download the latest version bash wget https://dl.min.io/server/minio/release/linux-amd64/miniochmod +x miniosudomv minio /usr/local/bin/ Create Storage Directory and Start … Read more

Method for Setting Up a TCP/IP Experiment Server (Part 2)

Method for Setting Up a TCP/IP Experiment Server (Part 2)

Note: 1. AIX Solaris and Gemini Gateway NetB belong to the same subnet, accessed externally through the gateway’s port 8.104. 2. SLIP and BSDI network card 2 are point-to-point connections (13.65 — 13.66). 3. BSDI network card 1 and Sun network card 1 SVR4 are in the same subnet. 4. Sun network card 2 (1.29) … Read more