Automate Remote Script Execution with rconf

Alex HavokAlex Havok
3 min read

Introduction

Managing remote servers efficiently is crucial for system administrators and DevOps teams. rconf is a powerful command-line tool that simplifies running local shell scripts across multiple remote hosts via SSH. It eliminates the need for complex configurations, providing a lightweight and efficient way to execute scripts remotely with just a single binary.


πŸš€ Key Features

  • Concurrent Execution: Execute scripts on multiple hosts simultaneously with configurable concurrency levels.

  • Structured Logging: Provides detailed logs to aid in monitoring and troubleshooting.

  • Secure Authentication: Uses SSH private keys for secure connections, supporting password-protected keys.

  • Automatic Script Management: Uploads and executes scripts on remote hosts seamlessly.

  • Execution Summary: Displays a summary table of execution results.


πŸ“₯ Installation

1️⃣ Manual Installation

  1. Download the latest binary from the Releases page.

  2. Place the binary in your system's PATH (e.g., /usr/local/bin).

  3. Ensure it has executable permissions:

     chmod +x /usr/local/bin/rconf
    

2️⃣ Homebrew Installation (macOS)

brew tap hashmap-kz/rconf
brew install rconf

πŸ›  Usage Example

rconf \
  --pkey /path/to/private_key \
  --filename /path/to/script1.sh,/path/to/script-dir/ \
  --filename https://shared.company.com/path/to/script.sh \
  --conn backup@10.40.240.193 \
  --conn myuser@10.40.240.189:2222 \
  --workers 5 \
  --log execution.log

πŸ” CLI Flags Overview

FlagShortDescription
--pkey-iPath to SSH private key (required).
--pkey-passPassphrase for SSH private key (if password-protected).
--filename-fComma-separated list of scripts, directories, or URLs.
--conn-HList of remote hosts (username:password@host:port).
--recursive-RProcess directories recursively (default: true).
--workers-wMaximum concurrent SSH connections (default: 2).
--log-lLog file path (default: ssh_execution.log).

πŸ”§ How It Works

  1. Reads the specified scripts into memory.

  2. Establishes SSH and SFTP connections to remote hosts.

  3. Uploads scripts to the remote /tmp/ directory.

  4. Executes scripts remotely using sudo.

  5. Stores and displays execution results in a structured summary.


πŸ“Š Example Output

πŸš€ Starting script execution...
[HOST: 10.40.240.189] πŸ”„ Connecting...
[HOST: 10.40.240.193] πŸ”„ Connecting...
[HOST: 10.40.240.193] ⏳ Uploading scripts\00-packages.sh...
[HOST: 10.40.240.193] πŸš€ Executing scripts\00-packages.sh...
[HOST: 10.40.240.189] ⏳ Uploading scripts\00-packages.sh...
[HOST: 10.40.240.189] πŸš€ Executing scripts\00-packages.sh...
[HOST: 10.40.240.193] βœ… Successfully executed scripts\00-packages.sh
[HOST: 10.40.240.193] ⏳ Uploading scripts\01-timezone.sh...
[HOST: 10.40.240.193] πŸš€ Executing scripts\01-timezone.sh...
[HOST: 10.40.240.189] βœ… Successfully executed scripts\00-packages.sh
[HOST: 10.40.240.189] ⏳ Uploading scripts\01-timezone.sh...
[HOST: 10.40.240.189] πŸš€ Executing scripts\01-timezone.sh...
[HOST: 10.40.240.193] βœ… Successfully executed scripts\01-timezone.sh
[HOST: 10.40.240.193] ⏳ Uploading scripts\02-locale.sh...
[HOST: 10.40.240.193] πŸš€ Executing scripts\02-locale.sh...
[HOST: 10.40.240.189] βœ… Successfully executed scripts\01-timezone.sh
[HOST: 10.40.240.189] ⏳ Uploading scripts\02-locale.sh...
[HOST: 10.40.240.189] πŸš€ Executing scripts\02-locale.sh...
[HOST: 10.40.240.189] βœ… Successfully executed scripts\02-locale.sh
[HOST: 10.40.240.189] πŸ”„ Disconnecting...
[HOST: 10.40.240.193] βœ… Successfully executed scripts\02-locale.sh
[HOST: 10.40.240.193] πŸ”„ Disconnecting...

=== Execution Summary ===
HOST            RESULT
10.40.240.189  Success
10.40.240.193  Success

🌟 Get Started with rconf Today!

If you're looking for a straightforward, efficient way to manage remote script execution, rconf is the tool for you. It’s lightweight, secure, and easy to integrate into existing workflows.

πŸ”— Check out the rconf GitHub repository for more details!

Happy automating! πŸš€

0
Subscribe to my newsletter

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

Written by

Alex Havok
Alex Havok