Executing commands using SSH concurrently on multiple hosts
Project description
concurrent-ssh
Executing commands with ssh concurrently on multiple hosts using asyncio
Installation
pip install concurrent-ssh
# Or from the latest GitHub version
pip install git+https://github.com/DCsunset/concurrent-ssh
Usage
Note: ensure that ssh
is in your PATH
environment variables.
CLI
Use -H
or --hosts
to specify the hosts to run the commands on:
cssh -H <host1> <host2> .... <host_n> -- <command>
# pass extra ssh options
cssh -o="-q -4" -H <host1> <host2> .... <host_n> -- <command>
# read hosts from file
cssh -f hosts.txt -- <command>
Note that --
is necessary to separate the options and the command.
For -o/--options
to work correctly, use =
to prevent it from being parsed as another option.
The standard input (stdin) of the cssh
process is piped to the stdin of every spawned processes.
cssh
can handle signals as follows:
- Upon receiving one
SIGINT
(including keyboard interrupt) orSIGTERM
,cssh
will sendSIGTERM
to all spawned processes. - Upon receiving more than one of them,
cssh
will instead sendSIGKILL
to kill all spawned processes.
Library
It can also be used as a library:
import asyncio
from cssh.executor import SshExecutor
async def main():
hosts = ["host1", "host2"]
executor = SshExecutor(hosts)
# running concurrently
await executor.run("some_command --test")
# access stdout for all hosts (or stderr)
async for host, out in executor.stdout:
print(f"{host}: {out}")
# wait until all finished
ret_codes = await executor.wait()
asyncio.run(main())
See more usage in cssh/cli.py
.
Development
To set up the development environment, first clone this repo.
Then it's recommended to usevenv
:
# suppose PWD is the root dir of the repo
python -m venv venv
# activate the environment``
source venv/bin/activate
pip install -r requirements.txt
To deactivate, run deactivate
.
License
This project is licensed under AGPL-3.0. Copyright notice:
concurrent-ssh
Copyright (C) 2023 DCsunset
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file concurrent-ssh-0.3.1.tar.gz
.
File metadata
- Download URL: concurrent-ssh-0.3.1.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca5b4eb124aa8ea1054b5852b82b26424f12e238734c82f537bc5ca5ecfe706d |
|
MD5 | 45201d18461ab10ac093b415aac8631e |
|
BLAKE2b-256 | 7d5feb9a0d62a3e0b8dd6664141b0231630b9256212abac9847848086217dc31 |
File details
Details for the file concurrent_ssh-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: concurrent_ssh-0.3.1-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 719e160d17df3cccf5fb317c7f72265c56a08976f1c7bfc9a818ed7a36f60060 |
|
MD5 | 479a592121bbcf2c748cfed7751b15c5 |
|
BLAKE2b-256 | f2f6059a44f3bae8815e5b5a31d5307c020c5d9baf80549dbe6ab8c62b6381fe |