https://github.com/douban/redarrow-rs
A command dispatcher to run executables remotely and safely.
https://github.com/douban/redarrow-rs
Last synced: 6 months ago
JSON representation
A command dispatcher to run executables remotely and safely.
- Host: GitHub
- URL: https://github.com/douban/redarrow-rs
- Owner: douban
- License: bsd-3-clause
- Created: 2020-02-18T08:24:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T09:30:15.000Z (over 2 years ago)
- Last Synced: 2025-03-20T14:40:35.744Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 164 KB
- Stars: 6
- Watchers: 8
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# redarrow-rs
Execute commands on remote servers.

[](https://crates.io/crates/redarrow)
## client example
```rust
let client = webclient::Client::new(host, 4205, command, arguments);
let result = client.run_command().await;
```## run server
```shell
export RUST_LOG="info"
redarrow-server -c misc/example.conf
```## run client
```shell
redarrow-client uptime
```