Automate Remote Script Execution with rconf

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
Download the latest binary from the Releases page.
Place the binary in your system's
PATH
(e.g.,/usr/local/bin
).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
Flag | Short | Description |
--pkey | -i | Path to SSH private key (required). |
--pkey-pass | Passphrase for SSH private key (if password-protected). | |
--filename | -f | Comma-separated list of scripts, directories, or URLs. |
--conn | -H | List of remote hosts (username:password@host:port ). |
--recursive | -R | Process directories recursively (default: true). |
--workers | -w | Maximum concurrent SSH connections (default: 2). |
--log | -l | Log file path (default: ssh_execution.log ). |
π§ How It Works
Reads the specified scripts into memory.
Establishes SSH and SFTP connections to remote hosts.
Uploads scripts to the remote
/tmp/
directory.Executes scripts remotely using
sudo
.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! π
Subscribe to my newsletter
Read articles from Alex Havok directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
