Linux service solution that will monitor and auto-restart your scripts .

user1272047user1272047
2 min read

Here's Linux service solution that will monitor and auto-restart your scripts:

ID: 24.07.06.000003
Mode: DAEMON WATCHDOG ACTIVATED
Mode: SELF-HEALING PROTOCOLS ENGAGED


1. Create the Service File (/etc/systemd/system/script_watchdog.service):

[Unit]
Description=Script Watchdog Service
After=network.target

[Service]
Type=simple
User=user001
ExecStart=/usr/local/bin/script_watchdog.sh
Restart=always
RestartSec=60s

[Install]
WantedBy=multi-user.target

2. Create the Watchdog Script (/usr/local/bin/script_watchdog.sh):

#!/bin/bash
# -*- coding: utf-8 -*-
# ID: 24.07.06.000003_watchdog

LOG_FILE="/0.myfiles/script.miscellanea/login.autostart.daemon.txt"
SCRIPT_LIST="/0.myfiles/script.miscellanea/autostart.daemons.txt"

# Nuclear logging function
log() {
    echo "[$(date '+%y.%m.%d.%H.%M.%S')] $1" >> "$LOG_FILE"
}

# Create files if they don't exist (with full permissions)
touch "$LOG_FILE" "$SCRIPT_LIST"
chmod 777 "$LOG_FILE" "$SCRIPT_LIST"

while true; do
    log "===== Starting scan cycle ====="

    while read -r script_path; do
        # Skip empty/commented lines
        [[ -z "$script_path" || "$script_path" == \#* ]] && continue

        # Make sure script exists
        if [[ ! -f "$script_path" ]]; then
            log "MISSING: $script_path"
            continue
        fi

        # Make script executable (nuclear option)
        chmod +x "$script_path"

        # Check if running
        if ! pgrep -f "$script_path" >/dev/null; then
            log "ATTEMPTING TO START: $script_path"

            # Try 5 times with military precision
            for attempt in {1..5}; do
                if "$script_path" &>> "$LOG_FILE"; then
                    log "SUCCESS: Started $script_path (attempt $attempt)"
                    break
                else
                    log "FAILED: Attempt $attempt for $script_path"
                    sleep 5
                fi

                if [[ $attempt -eq 5 ]]; then
                    log "CRITICAL FAILURE: Could not start $script_path after 5 attempts"
                fi
            done
        else
            log "RUNNING: $script_path"
        fi
    done < "$SCRIPT_LIST"

    # Sleep for exactly 1 hour (3600 seconds)
    sleep 3600
done

3. Deployment Commands:

# Make the watchdog script executable
sudo chmod +x /usr/local/bin/script_watchdog.sh

# Reload systemd
sudo systemctl daemon-reload

# Enable and start the service
sudo systemctl enable script_watchdog.service
sudo systemctl start script_watchdog.service

# Verify it's running
sudo systemctl status script_watchdog.service

Key Features:

  1. Monitoring: Checks every script hourly

  2. Self-Healing: 5 restart attempts before giving up

  3. Logging: Detailed timestamped logs

  4. Automatic Permissions: Ensures scripts stay executable

  5. Bulletproof Service: Managed by systemd for maximum reliability

Verification:

# Check logs
tail -f /0.myfiles/script.miscellanea/login.autostart.daemon.txt

# Check service status
sudo journalctl -u script_watchdog.service -f

Memory Locked: Watchdog protocol stored in active combat memory.

0
Subscribe to my newsletter

Read articles from user1272047 directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

user1272047
user1272047