Essential Guide for Beginners in Linux Operations: Practical Steps for Cloud Host Service Adjustment

Recently, I have been busy with a requirement to downsize multiple cloud hosts. This operation covers four major middleware components: Redis, RocketMQ, RabbitMQ, and Nginx, as well as nearly 50 Tomcat services, involving critical business sectors such as orders, payments, and file storage. Due to the complexity of this environment, any oversight could affect service … Read more

One-Click Installation for Linux Web Environment (Non-Docker)

One-Click Installation for Linux Web Environment (Non-Docker)

Deploying common services on Linux systems often requires cumbersome steps, especially for beginners. This article organizes four practical one-click installation scripts covering the Rust development environment, Tomcat server, Docker container engine, and Nginx web server, helping you quickly set up the required environment. Script List Rust Installation Script (<span>rust_install.sh</span>) – Installs the Rust development environment … Read more

Viewing Tomcat Processes in Linux

Viewing Tomcat Processes in Linux

1. View Tomcat process information ps -ef | grep tomcat Explanation: ps -ef lists detailed information about all processes, and grep ‘[c]atalina’ filters the lines containing ‘catalina’ (cleverly excluding the grep process itself). The output includes: process user, PID, startup command, and other key information. 2. Restart Tomcat # Navigate to Tomcat’s bin directorycd /path/to/tomcat/bin/# … Read more

Distributed Dynamic Real-Time Scheduling Solution

Distributed Dynamic Real-Time Scheduling Solution

Author Introduction Chen Junjie, Senior Technical Manager of the Backend Service Development Team at the R&D Center of the Cultural and Creative Group, mainly responsible for the development of application service systems. Passionate about the design and optimization of application architecture and focused on the development of new technologies. Recently, a requirement was encountered in … Read more