使用csshX同步管理多個SSH會話

前言

終端登陸管理方案很是成熟除了耳熟能詳的跨平臺付費方案SeureCRT,Windows有Xshell,macOS有iTerm2,不過在macOS下想用到相似SecureCRT和Xshell同樣的Send to all功能可能就沒有這麼方便了,而csshX正好能夠知足批量管理操做的需求css

使用csshX同步管理多個SSH會話

更新歷史

2018年11月26日 - 初稿node

閱讀原文 - https://wsgzao.github.io/post...git

擴展閱讀github

csshx - https://github.com/brockgr/csshxshell


csshx簡介

As csshX is a command line tool, no special installation is needed. It may
be copied into a directory in your path, (e.g. /usr/local/bin) for your
convenience.ruby

The software has been tested on Mac OS X 10.5, 10.6 and 10.7 with the default
Perl installation - no additional Perl modules are required.bash

DOCUMENTATION:服務器

The documentation for csshX is self contained. Please run:app

csshX --man

使用brew安裝csshx

Name: csshx
Use: Cluster ssh tool for Terminal.app
URL: https://github.com/brockgr/csshxssh

# 安裝homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
# 安裝csshx
brew install csshx

csshx使用

當咱們管理數十臺或更多 Linux 服務器的時候,每每須要在每臺服務器上執行一樣的命令,好比咱們想一次查看 10 臺服務器(node)上系統負載狀況,或者想知道哪臺服務器有剩餘內存能夠分給新客戶,又或者想執行 df 命令看看哪一個服務器上還有多的硬盤空間等等,除了能夠用腳本或工具統一收集這些信息外,咱們還能夠考慮使用一些同步管理多個 SSH 會話的小工具來幫助管理多臺服務器,節省時間提升管理效率。在 Linux 上能夠用 pdsh、ClusterSSH 和 mussh;在 Mac 上能夠用 csshX.

# 使用 csshX 很簡單,若是要同時 ssh 到 4 個服務器能夠直接傳遞IP
csshX 192.168.0.1 192.168.0.2 192.168.0.3 192.168.0.4

# 也能夠把這些要 ssh 管理的 IP 寫到一個文件裏,而後加載這個文件
vi hosts
192.168.0.1
192.168.0.2
192.168.0.3
192.168.0.4

csshX --hosts hosts

其餘問題

csshx is not working in New Mac OS Release MacOS Mojave

https://github.com/brockgr/cs...

brew install parera10/csshx/csshx
相關文章
相關標籤/搜索