项目作者: raravena80

项目描述 :
Run commands across servers using ssh
高级语言: Go
项目地址: git://github.com/raravena80/sshrunner.git
创建时间: 2017-10-14T16:10:08Z
项目社区:https://github.com/raravena80/sshrunner

开源协议:Apache License 2.0

下载


sshrunner CircleCI Build Status Coverage Status Go Report Card Documentation Apache Licensed

Run commands across servers using ssh

Usage

  1. Sshrunner runs an ssh command across multiple servers
  2. Usage:
  3. sshrunner [flags]
  4. Flags:
  5. -s, --agentsocket string Socket for the ssh agent (default "/private/tmp/com.apple.launchd.xxx/Listeners")
  6. -c, --command string Command to run
  7. --config string config file (default is $HOME/.sshrunner.yaml)
  8. -h, --help help for sshrunner
  9. -k, --key string Ssh key to use for authentication, full path (default "/Users/raravena/.ssh/id_rsa")
  10. -m, --machines strings Hosts to run command on
  11. -p, --port int Ssh port to connect to (default 22)
  12. -a, --useagent Use agent for authentication
  13. -u, --user string User to run the command as (default "raravena")

Examples

Makes /tmp/tmpdir in 17.2.2.2 and 17.2.3.2:

  1. $ sshrunner -c "mkdir /tmp/tmpdir" -m 17.2.2.2,17.2.3.2

Creates /tmp/file file in host1 and host2

  1. $ sshrunner -c "touch /tmp/file" -m host1,host2

Moves a file and creates another one in host1 and host2:

  1. $ sshrunner -c "mv /tmp/file1 /tmp/file2; touch /tmp/file3" -m host1,host2

Runs with default in ~/.sshrunner.yaml

  1. $ sshrunner

Config

Sample ~/.sshrunner.yaml

  1. sshrunner:
  2. user: ubuntu
  3. key: /Users/username/.ssh/id_rsa
  4. useagent: true
  5. machines:
  6. - 172.1.1.1
  7. - 172.1.1.2
  8. - 172.1.1.3
  9. - 172.1.1.4
  10. - 172.1.1.5
  11. command: sudo rm -f /var/log/syslog.*