Tagged articles
213 articles
Page 1 of 3
Linux Tech Enthusiast
Linux Tech Enthusiast
Apr 24, 2026 · Operations

Automated Linux System Inspection Script for Comprehensive Health Checks

This article provides a Bash script that automatically gathers Linux system information—including OS details, uptime, CPU and memory usage, disk utilization with tiered alerts, network interfaces, top memory‑consuming processes, key service status, pending updates, recent error logs, load average, TCP connections, and zombie processes—and shows how to schedule it with cron for daily reporting.

AutomationLinuxServer health
0 likes · 11 min read
Automated Linux System Inspection Script for Comprehensive Health Checks
AI Tech Publishing
AI Tech Publishing
Apr 17, 2026 · Artificial Intelligence

Why Your AI Agent Crashes: 7 Hosting Patterns Compared

The article explains why AI agents fail when deployed with the wrong hosting model, presents a systematic comparison of seven patterns—Cron, Reactive, Daemon, Pipeline, Service, Adaptive, and Mesh—detailing their problem scope, typical scenarios, concrete Python or TypeScript implementations, when to choose each, and the trade‑offs, while warning against the common mistake of over‑engineering from the start.

AI agentsEvent-drivenMulti-Agent Mesh
0 likes · 21 min read
Why Your AI Agent Crashes: 7 Hosting Patterns Compared
MaGe Linux Operations
MaGe Linux Operations
Apr 17, 2026 · Information Security

Master Linux Privilege Escalation: Risks, Exploits, and Hardening Guide

This comprehensive guide explains the most common Linux privilege‑escalation vectors—including unsafe SUID binaries, sudo misconfigurations, cron jobs, password and SSH‑key leaks, kernel vulnerabilities, container escapes, and file‑permission flaws—while providing concrete detection commands and practical hardening steps for each risk.

BashHardeningLinux security
0 likes · 23 min read
Master Linux Privilege Escalation: Risks, Exploits, and Hardening Guide
Coder Trainee
Coder Trainee
Apr 2, 2026 · Backend Development

Configurable Java Scheduled Tasks with Quartz

This guide explains how to build a configurable Java scheduling microservice using the Quartz framework, covering task entity CRUD integration, a utility class for creating, updating, pausing, and deleting jobs, and concrete code examples that demonstrate building JobDetails, CronTriggers, and invoking the scheduler.

JavaJob SchedulingMicroservice
0 likes · 4 min read
Configurable Java Scheduled Tasks with Quartz
Shuge Unlimited
Shuge Unlimited
Mar 17, 2026 · Operations

Exploring OpenClaw for K8s AIOps: Four Practical Scenarios from Concept to Deployment

This article analyzes how OpenClaw’s Skills, Subagent, and Cron capabilities can be leveraged to build Kubernetes AIOps solutions, presenting four detailed scenarios—fault diagnosis, resource optimization, security audit, and continuous health checks—while evaluating technical feasibility, security, reliability, cost, and a phased rollout plan.

Cloud NativeKubernetesOpenClaw
0 likes · 19 min read
Exploring OpenClaw for K8s AIOps: Four Practical Scenarios from Concept to Deployment
Top Architecture Tech Stack
Top Architecture Tech Stack
Mar 5, 2026 · Artificial Intelligence

Unlock OpenClaw: 8 Powerful AI Agent Use Cases You Can Deploy Today

This guide walks you through eight production‑grade OpenClaw scenarios—including cron‑driven briefings, webhook integrations, MCP data access, multi‑agent roles, browser automation, mobile camera monitoring, custom skill creation, and workspace configuration—providing complete configuration files and command‑line examples for immediate use.

AI automationCustom skillMCP
0 likes · 16 min read
Unlock OpenClaw: 8 Powerful AI Agent Use Cases You Can Deploy Today
Coder Trainee
Coder Trainee
Mar 5, 2026 · Operations

Why is Linux’s buff/cache so large and how to clear it automatically

When running `free -h` on a Linux system, you may notice the buff/cache entry consuming over a gigabyte, leaving little memory for applications; this article explains that the cache is built from file I/O, shows how to manually drop it via `/proc/sys/vm/drop_caches`, and provides a cron‑based script to automate the cleanup.

LinuxMemory Managementbuff/cache
0 likes · 4 min read
Why is Linux’s buff/cache so large and how to clear it automatically
BirdNest Tech Talk
BirdNest Tech Talk
Feb 19, 2026 · Artificial Intelligence

How to Automate Daily News Briefings with OpenClaw: Skill vs Prompt

This guide walks through two practical approaches—Skill and Prompt—to configure OpenClaw for automated RSS aggregation, AI‑driven filtering, summarization, and channel delivery, comparing their setup steps, code examples, advantages, limitations, and when to choose each method.

AI AssistantAutomationOpenClaw
0 likes · 8 min read
How to Automate Daily News Briefings with OpenClaw: Skill vs Prompt
macrozheng
macrozheng
Dec 16, 2025 · Backend Development

Master Spring Task: Build, Schedule, and Optimize Timed Jobs in Spring Boot

This guide explains what Spring Task is, walks through three steps to set up scheduled jobs in Spring Boot, demystifies Cron expressions, showcases common use cases, offers advanced configuration tips, warns about pitfalls, and outlines performance‑tuning and future directions for reliable backend scheduling.

Backend DevelopmentJavaScheduling
0 likes · 9 min read
Master Spring Task: Build, Schedule, and Optimize Timed Jobs in Spring Boot
Raymond Ops
Raymond Ops
Dec 13, 2025 · Operations

Boost Linux Server Management: Essential Automation Tools & Scripts

This article explains how Linux system administrators can dramatically improve efficiency and reliability by adopting automation tools like Ansible, Puppet, and SaltStack, along with practical shell and Python scripts for batch operations, scheduled tasks, log analysis, and automated backups.

AnsibleAutomationLinux
0 likes · 9 min read
Boost Linux Server Management: Essential Automation Tools & Scripts
Java Architect Handbook
Java Architect Handbook
Dec 12, 2025 · Backend Development

Master Spring Task: Build, Optimize, and Scale Your Scheduled Jobs

This guide walks you through what Spring Task is, how to enable it in three simple steps, decode cron expressions, explore six real‑world use cases, unlock four advanced features, avoid common pitfalls, and apply performance‑tuning and future‑proofing techniques for robust Java scheduling.

Distributed SchedulingJavaPerformance Optimization
0 likes · 11 min read
Master Spring Task: Build, Optimize, and Scale Your Scheduled Jobs
Ray's Galactic Tech
Ray's Galactic Tech
Dec 8, 2025 · Databases

Build a Production-Ready Automated MySQL Backup with mydumper

Learn how to install mydumper on various Linux distributions, use its multithreaded, compressed, and incremental backup features, and deploy a robust Bash script that automates full and incremental MySQL backups, handles encryption, cleanup, logging, notifications, and restoration with myloader.

AutomationBackupcron
0 likes · 10 min read
Build a Production-Ready Automated MySQL Backup with mydumper
php Courses
php Courses
Oct 29, 2025 · Backend Development

Rethinking Queues: Simple PHP Delayed Tasks Without a Full Message Queue

This article explains how modern PHP applications can handle time‑consuming background work by using controllable delayed delivery with lightweight database or Redis solutions instead of heavyweight queue systems, offering code examples, pros and cons, and guidance on when a full queue is truly needed.

crondatabase schedulingdelayed tasks
0 likes · 8 min read
Rethinking Queues: Simple PHP Delayed Tasks Without a Full Message Queue
MaGe Linux Operations
MaGe Linux Operations
Oct 3, 2025 · Operations

Why Your Crontab Jobs Fail: 5 Common Mistakes and How to Fix Them

This article explains why scheduled tasks often break in crontab, outlines the five most frequent errors such as missing environment variables, wrong paths, silent output, incorrect time expressions, and permission issues, and provides concrete debugging steps and best‑practice solutions for reliable Linux scheduling.

BashDebuggingLinux
0 likes · 30 min read
Why Your Crontab Jobs Fail: 5 Common Mistakes and How to Fix Them
php Courses
php Courses
Sep 25, 2025 · Backend Development

How to Build a PHP Promotion Push System for E‑Commerce Sites

This guide walks through the complete process of implementing a product promotion push feature in a PHP‑based e‑commerce platform, covering target identification, database schema design, message templating, script development, scheduling with cron, and result monitoring to boost user engagement and sales.

BackendPush Notificationcron
0 likes · 4 min read
How to Build a PHP Promotion Push System for E‑Commerce Sites
Java Tech Enthusiast
Java Tech Enthusiast
Sep 10, 2025 · Backend Development

Automate MinIO Image Cleanup with Spring Boot Scheduled Tasks and Cron

This guide explains how to use MinIO SDK in a Spring Boot application to schedule automatic deletion of outdated image folders, covering dependency setup, delete methods, performance considerations, cron expression configuration, thread‑pool tuning, asynchronous execution, and extensible configuration via properties.

AsyncFile CleanupMinio
0 likes · 26 min read
Automate MinIO Image Cleanup with Spring Boot Scheduled Tasks and Cron
Raymond Ops
Raymond Ops
Aug 15, 2025 · Operations

Master Linux Cron: Essential Commands, Config Files, and Scheduling Tricks

This guide explains Linux’s cron daemon, covering service control commands, key configuration files such as /var/spool/cron and /etc/crontab, permission handling, script creation, crontab syntax with special characters, and practical scheduling examples for effective system task automation.

LinuxSchedulingSystem Administration
0 likes · 11 min read
Master Linux Cron: Essential Commands, Config Files, and Scheduling Tricks
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Aug 13, 2025 · Backend Development

Master Dynamic Scheduling in Spring Boot 3: From Database‑Driven Cron to Runtime Task Management

This article demonstrates how to replace static @Scheduled annotations with database‑driven Cron expressions in Spring Boot 3, covering task entity design, repository methods, service validation, thread‑pool scheduler configuration, dynamic task registration, testing, and security‑focused optimizations for safe runtime scheduling.

Dynamic Schedulingcronspring-boot
0 likes · 11 min read
Master Dynamic Scheduling in Spring Boot 3: From Database‑Driven Cron to Runtime Task Management
Top Architect
Top Architect
Jul 22, 2025 · Backend Development

Unlock Spring Task: Turn Your Java App into a Personal Scheduler

This article explains what Spring Task is, shows how to add the necessary dependency, enable scheduling with annotations, write cron‑based methods, explore common use cases, avoid typical pitfalls, and apply performance tricks to make scheduled jobs reliable and efficient.

SchedulingSpringBootcron
0 likes · 11 min read
Unlock Spring Task: Turn Your Java App into a Personal Scheduler
Raymond Ops
Raymond Ops
Jul 18, 2025 · Operations

Master Linux Process Management: From Programs to Commands and Scheduling

This article explains what programs and processes are, their relationship, various process states and types, priority levels, and provides practical guidance on using essential Linux commands such as ps, top, pgrep, pstree, free, iostat, iotop, as well as job control, kill signals, and scheduling tools like at and crontab.

Linuxcronprocess management
0 likes · 16 min read
Master Linux Process Management: From Programs to Commands and Scheduling
Top Architect
Top Architect
Jul 17, 2025 · Backend Development

Master Spring Task: Turn Your App into a Personal Scheduler

This guide explains what Spring Task is, shows how to add the dependency, enable scheduling annotations, write cron‑based methods, and covers common use cases, pitfalls, and performance tricks for building reliable backend scheduled jobs in Java.

JavaSchedulingTaskScheduler
0 likes · 11 min read
Master Spring Task: Turn Your App into a Personal Scheduler
Raymond Ops
Raymond Ops
Jul 8, 2025 · Information Security

How to Detect and Remove Linux Mining Malware: Step‑by‑Step Guide

This article explains how to identify high CPU usage caused by hidden mining malware on Linux servers and provides a comprehensive, command‑line driven process for isolating the host, blocking malicious network traffic, cleaning cron jobs, startup services, compromised libraries, SSH keys, and terminating malicious processes.

LinuxMalware RemovalSecurity
0 likes · 10 min read
How to Detect and Remove Linux Mining Malware: Step‑by‑Step Guide
Raymond Ops
Raymond Ops
Jul 3, 2025 · Operations

Master Linux Cron: From Basics to Advanced Scheduling Techniques

This article provides a comprehensive guide to Linux cron jobs, covering fundamental concepts, time syntax, crontab commands, practical examples for system and user tasks, debugging tips, and best practices for writing reliable scheduled tasks.

AutomationLinuxScheduled Tasks
0 likes · 11 min read
Master Linux Cron: From Basics to Advanced Scheduling Techniques
ITPUB
ITPUB
Jun 26, 2025 · Operations

One‑Click Linux System Inspection: Complete Bash Script Guide

Learn how to create and run a one‑click Linux inspection Bash script that automatically gathers system basics, CPU, memory, disk usage, network configuration, service status, security checks, login records, log analysis, and performance metrics, and how to schedule it via cron.

BashLinuxShell
0 likes · 8 min read
One‑Click Linux System Inspection: Complete Bash Script Guide
IT Xianyu
IT Xianyu
Jun 4, 2025 · Databases

Comprehensive Guide to Automated MySQL Backup and Restore with Docker

This article provides a step‑by‑step tutorial for DBAs to design a reliable MySQL backup strategy, write a Bash automation script, schedule it with cron, and perform restoration drills using Docker containers, while covering directory planning, command checks, cleanup, and common troubleshooting.

AutomationBackupDatabase Recovery
0 likes · 17 min read
Comprehensive Guide to Automated MySQL Backup and Restore with Docker
Selected Java Interview Questions
Selected Java Interview Questions
May 29, 2025 · Backend Development

Spring Task: A Programmer’s Personal Assistant – Mastering Scheduling in Spring Boot

This tutorial introduces Spring Task, explains how to enable scheduling in Spring Boot, demonstrates creating cron expressions, shows common use cases such as data sync, log cleanup, and email reminders, and provides best‑practice tips for thread‑pool tuning, distributed execution, and avoiding common pitfalls.

BackendSpring Bootcron
0 likes · 9 min read
Spring Task: A Programmer’s Personal Assistant – Mastering Scheduling in Spring Boot
Java Captain
Java Captain
Apr 22, 2025 · Operations

Improving Cron Job Stability and Monitoring with Best Practices and Healthchecks

The article analyzes common cron job failures such as accidental deletions, OOM crashes, and lack of monitoring, then proposes standardized Jenkins deployment, automatic server selection, lock mechanisms, queue-based processing, status awareness, and the use of the open‑source Healthchecks system to achieve proactive detection and alerting.

AutomationOperationscron
0 likes · 8 min read
Improving Cron Job Stability and Monitoring with Best Practices and Healthchecks
Code Ape Tech Column
Code Ape Tech Column
Apr 18, 2025 · Backend Development

Dynamic Cron Expression Management in SpringBoot Scheduling

This article explains how to enable SpringBoot scheduling with @EnableScheduling and @Scheduled, describes the three scheduling modes (cron, fixedDelay, fixedRate), and provides a complete solution for dynamically updating, disabling, and re‑enabling Cron expressions at runtime using custom interfaces and configuration classes.

BackendJavaScheduling
0 likes · 10 min read
Dynamic Cron Expression Management in SpringBoot Scheduling
Liangxu Linux
Liangxu Linux
Mar 18, 2025 · Operations

Master Linux Cron: Schedule Tasks, Manage Services, and Write Crontabs

This guide explains what the Linux cron daemon does, how to control the crond service, where cron configuration files reside, permission handling, creating cron scripts, crontab syntax, and provides numerous practical examples for automating system tasks.

SchedulingSystem Administrationcron
0 likes · 12 min read
Master Linux Cron: Schedule Tasks, Manage Services, and Write Crontabs
Liangxu Linux
Liangxu Linux
Mar 12, 2025 · Operations

Automating Hourly Server Backups with rsync, tar, and Cron

This guide details a step‑by‑step solution for hourly client backups of /etc and /var/log, naming conventions, rsync transfer, integrity checks, email notifications, and cleanup on both client and server sides using Bash scripts and cron jobs.

AutomationBackupBash
0 likes · 12 min read
Automating Hourly Server Backups with rsync, tar, and Cron
Raymond Ops
Raymond Ops
Feb 26, 2025 · Operations

Master Linux Cron: Create, Manage, and Debug Scheduled Tasks

This guide explains how to use Linux crontab for scheduling tasks, covering basic job creation, locating user and system crontab files, enabling cron logging, controlling user access, command options, time syntax, common scheduling patterns, and editing the system-wide /etc/crontab file.

Scheduled Taskscroncrontab
0 likes · 6 min read
Master Linux Cron: Create, Manage, and Debug Scheduled Tasks
Raymond Ops
Raymond Ops
Feb 22, 2025 · Operations

Master Log Rotation: Shell Scripts for Automated Nginx Log Splitting

This guide walks through why nginx logs need daily rotation, demonstrates manual log splitting, provides a complete shell script for automated daily log rotation, explains logrotate configuration, and shows how to test and schedule the process with cron, ensuring clean and manageable log files.

LinuxNGINXcron
0 likes · 13 min read
Master Log Rotation: Shell Scripts for Automated Nginx Log Splitting
21CTO
21CTO
Jan 6, 2025 · Operations

Master Linux Cron: Schedule Automated Backups with Easy Step‑by‑Step Guide

Learn how to use Linux's built‑in Cron scheduler to create, configure, and run automated backup jobs, covering crontab syntax, time fields, script creation, permission setup, and redirection of output to /dev/null, with step‑by‑step commands and code examples.

AutomationBackupSystem Administration
0 likes · 8 min read
Master Linux Cron: Schedule Automated Backups with Easy Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Dec 13, 2024 · Information Security

How to Detect and Remove Linux Mining Malware: Step-by-Step Guide

This guide explains how to identify high CPU usage caused by mining trojans on Linux servers, isolate and block malicious network traffic, clean scheduled tasks, startup services, compromised libraries, SSH keys, and finally terminate and delete the malicious processes and files.

LinuxMalware Removalcron
0 likes · 9 min read
How to Detect and Remove Linux Mining Malware: Step-by-Step Guide
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Nov 11, 2024 · Backend Development

Master Spring Boot 3 Task Scheduling: Interfaces, Annotations, Cron & Virtual Threads

This article explains how to use Spring Boot 3's TaskScheduler API, @Scheduled annotations, cron expressions, macro shortcuts, reactive support, virtual threads, and custom scheduling configuration, providing code examples and configuration tips for reliable backend task execution.

Backend DevelopmentSpring BootVirtual Threads
0 likes · 8 min read
Master Spring Boot 3 Task Scheduling: Interfaces, Annotations, Cron & Virtual Threads
Test Development Learning Exchange
Test Development Learning Exchange
Aug 15, 2024 · Operations

APScheduler Tutorial: Installation, Basic Usage, Triggers, and Advanced Features

This article introduces the Python APScheduler library, covering installation, a basic interval example, various trigger types such as date and cron, parameterized and timezone-aware jobs, retry handling, dynamic job management, SQL job stores, multithreading, parallel execution, external event triggers, priority settings, and how to run the examples.

APSchedulerJob StorePython
0 likes · 10 min read
APScheduler Tutorial: Installation, Basic Usage, Triggers, and Advanced Features
Ops Development Stories
Ops Development Stories
Aug 15, 2024 · Backend Development

How to Build a Flexible API Monitoring Exporter with Gin-Vue-Admin and Prometheus

This article walks through extending a simple Prometheus Exporter into a full-featured API monitoring solution using Gin-Vue-Admin, detailing backend task scheduling, database schema, multi-protocol checks (HTTP, TCP, DNS, ICMP), dynamic cron management, and frontend integration for managing and visualizing health metrics.

API monitoringBackendGin
0 likes · 18 min read
How to Build a Flexible API Monitoring Exporter with Gin-Vue-Admin and Prometheus
Architect
Architect
Aug 14, 2024 · Backend Development

How to Build a Scalable Distributed Task Scheduling Platform

This article outlines the essential components and design considerations for creating a distributed task scheduling platform, covering triggers, scheduling strategies, executors, task chains, circuit breakers, exception handling, blocking control, service discovery, monitoring, and a management console.

Backend ArchitectureDistributed Schedulingcircuit breaker
0 likes · 9 min read
How to Build a Scalable Distributed Task Scheduling Platform
JavaEdge
JavaEdge
Aug 8, 2024 · Fundamentals

What’s New in IntelliJ IDEA 2024.2? Key Features and Improvements

IntelliJ IDEA 2024.2 introduces a suite of enhancements—including in‑IDE Spring Data JPA execution, smarter cron expression handling, GraalJS‑powered HTTP client, faster startup, improved code completion, new UI defaults, advanced Scala support, Markdown math rendering, and focused profiling—to boost developer productivity across Java and other languages.

GraalJSIDE FeaturesIntelliJ IDEA
0 likes · 14 min read
What’s New in IntelliJ IDEA 2024.2? Key Features and Improvements
Liangxu Linux
Liangxu Linux
Jul 29, 2024 · Databases

Automate MySQL Backups and Restores with Bash, Cron, and Find

This guide shows how to create a Bash script that backs up a specific MySQL database using mysqldump, compresses the dump, automatically deletes old backups, explains the find -mtime option, and schedules the process with cron, plus detailed steps for restoring the data.

BackupDatabase RestorationLinux
0 likes · 7 min read
Automate MySQL Backups and Restores with Bash, Cron, and Find
Open Source Tech Hub
Open Source Tech Hub
Jul 28, 2024 · Backend Development

Master Dynamic PHP Cron Scheduling with the PHP‑Cron‑Scheduler Library

This guide explains how to replace static Linux cron jobs with the framework‑agnostic PHP‑Cron‑Scheduler, covering installation, configuration, job definition, timing expressions, best‑practice code examples, and log output to achieve flexible, secure, and maintainable task automation in PHP projects.

Schedulercrontask automation
0 likes · 7 min read
Master Dynamic PHP Cron Scheduling with the PHP‑Cron‑Scheduler Library
Open Source Tech Hub
Open Source Tech Hub
Jul 28, 2024 · Operations

Master Linux Cron: Complete Guide to Scheduling Automated Tasks

This comprehensive guide explains what cron jobs are, how the crond daemon works, the structure of crontab files, user versus system scheduling, syntax details, special characters, environment setup, creation, editing, listing, deletion, troubleshooting, and best practices for reliable Linux automation.

AutomationSchedulingSystem Administration
0 likes · 18 min read
Master Linux Cron: Complete Guide to Scheduling Automated Tasks
FunTester
FunTester
Jul 25, 2024 · Backend Development

Overview of Scheduled Tasks and Their Implementations in Java and Go

This article introduces the concept of scheduled tasks, outlines common use cases such as data backup, log cleanup, and performance monitoring, and provides detailed examples of implementing periodic jobs in Java using java.util.Timer, ScheduledExecutorService, Spring @Scheduled, and Quartz, as well as in Go using the time package, cron library, and gocron.

Scheduled Taskscrontimer
0 likes · 12 min read
Overview of Scheduled Tasks and Their Implementations in Java and Go
Java Tech Enthusiast
Java Tech Enthusiast
Jul 3, 2024 · Databases

MySQL Database Backup with Shell Script and Cron

This guide explains how to set up automated MySQL database backups using a shell script that runs mysqldump (optionally compressed), stores the files on a local disk, makes the script executable, and schedules it with a cron job after verifying disk space and cron availability.

BackupLinuxShell
0 likes · 5 min read
MySQL Database Backup with Shell Script and Cron
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jun 19, 2024 · Backend Development

Building and Deploying a Go‑Gin Web Application with Docker: From Installation to Comparison with Koa

This tutorial walks through installing Go, using the Go‑Gin framework, creating a simple cron‑enabled web service, building Docker images with and without multi‑stage builds, pushing them to a registry, deploying on a server, and comparing the final image size with an equivalent Koa implementation.

Backend DevelopmentDockerGin
0 likes · 11 min read
Building and Deploying a Go‑Gin Web Application with Docker: From Installation to Comparison with Koa
Open Source Linux
Open Source Linux
May 30, 2024 · Databases

How to Automate MySQL Backups and Restores with Bash and Cron

Learn to create a Bash script that backs up a specific MySQL database using mysqldump, automatically deletes old backups, handles Windows line‑ending issues, schedules daily execution with cron, and restores compressed backups, complete with detailed command examples and explanations of find -mtime.

Database RestorationLinuxcron
0 likes · 7 min read
How to Automate MySQL Backups and Restores with Bash and Cron
Efficient Ops
Efficient Ops
May 22, 2024 · Operations

Essential Ops Troubleshooting: 10 Quick Fixes and 22 Common Failure Cases

This guide compiles the most frequent Linux and network problems faced by operations engineers—ranging from non‑executing shell scripts and cron output issues to read‑only filesystems, disk space leaks, and service start failures—providing clear causes and step‑by‑step solutions for each case.

cronnetworktroubleshooting
0 likes · 18 min read
Essential Ops Troubleshooting: 10 Quick Fixes and 22 Common Failure Cases
Liangxu Linux
Liangxu Linux
Mar 24, 2024 · Operations

Master Incremental Backups with rsync: Local, Remote, and Automated Solutions

Learn how to use rsync for efficient incremental backups, covering basic local and remote synchronization, scheduling with cron, advanced options like file exclusion and bandwidth limiting, and practical examples such as website and database backups, all with clear command-line instructions.

Incremental BackupLinuxbackup automation
0 likes · 7 min read
Master Incremental Backups with rsync: Local, Remote, and Automated Solutions
MaGe Linux Operations
MaGe Linux Operations
Mar 21, 2024 · Information Security

How to Detect and Recover from a Linux Server Intrusion: Step‑by‑Step Guide

This article walks through a real‑world Linux server breach, detailing the observed symptoms, investigative commands, hidden malicious scripts, file‑locking tricks, and a comprehensive remediation process that includes tightening security groups, strengthening passwords, monitoring critical files, and restoring compromised system utilities.

ForensicsLD_PRELOADLinux
0 likes · 14 min read
How to Detect and Recover from a Linux Server Intrusion: Step‑by‑Step Guide
Liangxu Linux
Liangxu Linux
Feb 25, 2024 · Operations

Master Incremental Backups on Linux with rsync, tar, and Cron

This guide explains why incremental backups are crucial for data safety and walks through step‑by‑step Linux commands using rsync, tar + find, cron scheduling, and popular tools like Duplicity and BorgBackup, plus monitoring and logging techniques.

Linuxcronincremental
0 likes · 6 min read
Master Incremental Backups on Linux with rsync, tar, and Cron
php Courses
php Courses
Feb 4, 2024 · Backend Development

Implementing Product Promotion Push Functionality in a PHP E‑commerce Site

This article outlines the step‑by‑step process for implementing a product promotion push feature in a PHP‑based e‑commerce platform, covering target user identification, promotion table design, message templating, script development, database queries, cron scheduling, and result monitoring to boost user engagement and sales.

BackendPHPPush Notification
0 likes · 5 min read
Implementing Product Promotion Push Functionality in a PHP E‑commerce Site
php Courses
php Courses
Feb 1, 2024 · Backend Development

Implementing Product Promotion Push Functionality in a PHP E‑commerce Site

This article outlines a step‑by‑step guide for building a PHP‑based product promotion push system for e‑commerce platforms, covering recipient identification, database schema design, message templating, script development, scheduling with crontab, and result monitoring to boost user engagement and sales.

BackendPHPcron
0 likes · 4 min read
Implementing Product Promotion Push Functionality in a PHP E‑commerce Site
Top Architect
Top Architect
Dec 25, 2023 · Backend Development

Dynamic Modification of Cron Expressions in SpringBoot Scheduling

This article explains how to dynamically modify Cron expressions for scheduled tasks in SpringBoot applications, covering @EnableScheduling, @Scheduled, mutable and immutable task configurations, custom interfaces, and code examples for registering, refreshing, and managing tasks at runtime without external schedulers.

JavaSchedulingSpringBoot
0 likes · 13 min read
Dynamic Modification of Cron Expressions in SpringBoot Scheduling
Python Programming Learning Circle
Python Programming Learning Circle
Dec 9, 2023 · Backend Development

Eight Ways to Implement Python Scheduled Tasks

This article presents a comprehensive guide to implementing periodic tasks in Python, covering eight approaches including simple while‑loop with sleep, Timeloop, threading.Timer, sched, schedule, APScheduler, Celery, and Apache Airflow, each with code examples and practical notes.

APSchedulerAirflowScheduling
0 likes · 24 min read
Eight Ways to Implement Python Scheduled Tasks
Liangxu Linux
Liangxu Linux
Nov 15, 2023 · Operations

How to Install and Use Logwatch for Automated Linux Log Analysis

This guide explains why manual log inspection is tedious, introduces Logwatch as a solution, and provides step‑by‑step commands to install it on CentOS, configure its settings, run analyses instantly, and interpret the generated reports.

CentOSSystem Administrationcron
0 likes · 9 min read
How to Install and Use Logwatch for Automated Linux Log Analysis
Open Source Linux
Open Source Linux
Sep 6, 2023 · Operations

Master Logwatch: Install and Automate Linux Log Analysis on CentOS

Logwatch, a built‑in CentOS log analysis tool, can be installed via yum, configured by copying the default config, and scheduled through cron to automatically email root daily summaries of system logs, simplifying server monitoring and reducing manual log inspection.

cronlog analysislogwatch
0 likes · 7 min read
Master Logwatch: Install and Automate Linux Log Analysis on CentOS
Liangxu Linux
Liangxu Linux
Sep 5, 2023 · Operations

How to Install and Use Logwatch for Automated Linux Log Analysis

This guide explains how to install Logwatch on CentOS, configure its settings, run it manually or via daily cron, and interpret the sample email output that summarizes system logs, SSH activity, installed packages, and disk usage.

System Administrationcronlog analysis
0 likes · 8 min read
How to Install and Use Logwatch for Automated Linux Log Analysis
Efficient Ops
Efficient Ops
Aug 15, 2023 · Information Security

How I Recovered a Compromised Linux Server: Step‑by‑Step Incident Response

This article details a real‑world Linux server intrusion, describing the observed symptoms, the forensic investigation using commands like ps, top, last, and grep, the removal of malicious cron jobs and backdoors, and the lessons learned for securing SSH, file attributes, and cloud security groups.

RootkitSSHServer Security
0 likes · 15 min read
How I Recovered a Compromised Linux Server: Step‑by‑Step Incident Response
Python Programming Learning Circle
Python Programming Learning Circle
Aug 14, 2023 · Backend Development

Common Python Scheduling Techniques and Tools

This article reviews multiple ways to implement periodic tasks in Python, covering simple loops with sleep, libraries such as Timeloop, threading.Timer, sched, schedule, the APScheduler framework, as well as distributed solutions like Celery and Apache Airflow, and provides code examples for each method.

APSchedulerAirflowPython
0 likes · 23 min read
Common Python Scheduling Techniques and Tools
Liangxu Linux
Liangxu Linux
Jun 15, 2023 · Operations

Master Nginx Log Rotation with Logrotate: A Complete Step‑by‑Step Guide

This guide explains why nginx logs grow, introduces Logrotate as the Linux log‑management tool, walks through installation, core configuration, custom rotation rules, manual execution, compression options, time‑ and size‑based policies, hourly scheduling, and handling SELinux when rotating nginx logs.

Log ManagementNGINXcron
0 likes · 17 min read
Master Nginx Log Rotation with Logrotate: A Complete Step‑by‑Step Guide
Java Architect Essentials
Java Architect Essentials
May 11, 2023 · Backend Development

Implementing Dynamic Scheduled Tasks in Spring Boot

This article demonstrates how to create Spring Boot scheduled tasks whose execution intervals can be changed at runtime using configurable cron expressions or a PeriodicTrigger, providing full source code, configuration files, and a REST API for updating the schedule.

DynamicSchedulingPeriodicTriggerSpringBoot
0 likes · 10 min read
Implementing Dynamic Scheduled Tasks in Spring Boot
Python Programming Learning Circle
Python Programming Learning Circle
Apr 14, 2023 · Backend Development

Implementing Periodic Tasks in Python: while‑loop, Timeloop, sched, schedule, APScheduler, Celery, and Airflow

This article reviews several Python approaches for creating scheduled or periodic jobs—including a simple while‑True loop with sleep, the Timeloop library, the built‑in sched module, the schedule package, APScheduler, Celery, and Apache Airflow—explaining their usage, advantages, limitations, and providing ready‑to‑run code samples.

APSchedulerAirflowBackend
0 likes · 15 min read
Implementing Periodic Tasks in Python: while‑loop, Timeloop, sched, schedule, APScheduler, Celery, and Airflow
Liangxu Linux
Liangxu Linux
Mar 24, 2023 · Operations

Mastering Rsync: From Basic Sync to Daemon and Real‑Time Inotify Integration

This guide explains what Rsync is, its underlying algorithm, key features, and provides step‑by‑step commands for local, LAN, and user‑specific synchronization, daemon configuration, testing scenarios, and how to combine Rsync with inotify‑tools for real‑time bidirectional file replication.

Backupcrondaemon
0 likes · 18 min read
Mastering Rsync: From Basic Sync to Daemon and Real‑Time Inotify Integration
Architecture Digest
Architecture Digest
Mar 13, 2023 · Operations

Using Logrotate to Manage Nginx Log Files

This article explains how to install Logrotate on Linux, configure it to rotate Nginx access and error logs by size, time, or frequency, demonstrates manual rotation commands, compares copytruncate and create options, and shows how to customize cron schedules and handle SELinux permissions.

Log ManagementSystem Administrationcron
0 likes · 15 min read
Using Logrotate to Manage Nginx Log Files
JD Tech
JD Tech
Feb 23, 2023 · Backend Development

Comprehensive Guide to Scheduling Tasks: Algorithms, Java Implementations, and Distributed Solutions

This article provides an in‑depth overview of scheduled task processing, covering common business scenarios, fundamental principles, single‑machine algorithms such as min‑heap and time‑wheel, Java utilities like Timer, DelayQueue, ScheduledExecutorService, Spring Task, Quartz, and distributed approaches using Redis, Elastic‑Job, and XXL‑Job.

Distributed SystemsTime Wheelcron
0 likes · 22 min read
Comprehensive Guide to Scheduling Tasks: Algorithms, Java Implementations, and Distributed Solutions
Open Source Linux
Open Source Linux
Jan 13, 2023 · Operations

Mastering crontab: Common Pitfalls and How to Fix Them

This guide explains what crontab does, its syntax and options, provides practical examples, highlights typical problems such as environment variables, time misconfiguration, special characters and output redirection, and offers debugging tips and tools for reliable Linux task scheduling.

DebuggingLinuxcron
0 likes · 15 min read
Mastering crontab: Common Pitfalls and How to Fix Them
IT Services Circle
IT Services Circle
Jan 9, 2023 · Operations

Python Server Resource Monitoring and Alerting Scripts

This article presents Python scripts for server‑side and client‑side resource monitoring, automatically checking CPU, memory, disk usage and network traffic, storing alerts in MySQL and optionally sending notifications via email or Enterprise WeChat, with deployment instructions and cron scheduling.

AlertingAutomationPython
0 likes · 19 min read
Python Server Resource Monitoring and Alerting Scripts