设为首页收藏本站language→→ 语言切换

鸿鹄论坛

 找回密码
 论坛注册

QQ登录

先注册再绑定QQ

查看: 1180|回复: 0
收起左侧

rtop – 通过SSH监控远程主机

[复制链接]
发表于 2022-1-20 14:41:16 | 显示全部楼层 |阅读模式
rtop 是一个简单的、无代理的远程服务器监控工具,可通过 SSH 运行。它不需要在远程机器上安装任何代理软件。

它的工作原理是建立一个 SSH 会话,并在远程服务器上运行命令来收集系统信息,例如 CPU、磁盘、内存、网络。它每隔几秒钟就会刷新一次信息,就像 top 命令一样。

系统环境

Centos8

安装golang

检查一下系统是否安装golang:

[root@server1 ~]# rpm -qa|grep golang

发现没有安装,下面使用yum list golang命令查看一下远程仓库里面是否有改安装包:

[root@server1 ~]# yum list golangRepository AppStream is listed more than once in the configurationRepository extras is listed more than once in the configurationRepository PowerTools is listed more than once in the configurationRepository centosplus is listed more than once in the configurationAvailable Packagesgolang.x86_64                               1.14.12-1.module_el8.3.0+605+410c5674                               AppStream


                               
登录/注册后可看大图

发现在AppStream源中有golang安装包,下面开始安装吧:

[root@server1 ~]# yum -y install golang

为了使用 Go 语言,请在用户主目录下创建一个工作空间。Go 语言会将所有文件保存在这里:

[root@server1 ~]# mkdir -p ~/go_proj/bin

设置 GOPATH 和 GOBIN 环境变量。GOPATH 是项目工作区,将下面两行内容添加到~/.bashrc配置文件中:

[root@server1 ~]# vim ~/.bashrc export GOPATH=$HOME/go_projexport GOBIN=$GOPATH/bin


                               
登录/注册后可看大图

安装rtop

运行go get命令来构建rtop。rtop二进制文件自动保存在$GOPATH/bin下。运行go get之前,确保系统安装了git工具:

[root@server1 ~]# yum -y install git[root@server1 ~]# go get github.com/rapidloop/rtoppackage git:/github.com/rapidloop/rtop: git:/github.com/rapidloop/rtop: invalid import path: malformed import path "git:/github.com/rapidloop/rtop": invalid char ':'[root@server1 ~]# go get github.com/rapidloop/rtoppackage golang.org/x/crypto/ssh: unrecognized import path "golang.org/x/crypto/ssh": https fetch: Get "https://golang.org/x/crypto/ssh?go-get=1": dial tcp 216.239.37.1:443: connect: connection refusedpackage golang.org/x/crypto/ssh/agent: unrecognized import path "golang.org/x/crypto/ssh/agent": https fetch: Get "https://golang.org/x/crypto/ssh/agent?go-get=1": dial tcp 216.239.37.1:443: connect: connection refusedpackage golang.org/x/crypto/ssh/terminal: unrecognized import path "golang.org/x/crypto/ssh/terminal": https fetch: Get "https://golang.org/x/crypto/ssh/terminal?go-get=1": dial tcp 216.239.37.1:443: connect: connection refused

运行go get之后,发现不能下载依赖包。


                               
登录/注册后可看大图

按照下面操作,创建目录,并手动git下载相关依赖:

[root@server1 ~]# mkdir -p $GOPATH/src/golang.org/x/[root@server1 x]# git clone https://github.com/golang/crypto.git[root@server1 x]# git clone https://github.com/golang/term.git[root@server1 x]# git clone https://github.com/golang/sys.git


                               
登录/注册后可看大图

下面再次运行go get就可以了:

[root@server1 x]# go get github.com/rapidloop/rtop

下面可以看到rtop可以正常运行了。


                               
登录/注册后可看大图

如何使用rtop

rtop 二进制文件存在于 $GOPATH/bin 中,因此只需运行 $GOBIN/rtop就可以。只需添加远程主机信息,然后使用 rtop 命令进行监控。刷新间隔默认为5秒钟。

[root@server1 ~]# $GOBIN/rtop root@192.168.43.131


                               
登录/注册后可看大图

手动设置刷新间隔以更好地监控。这里设置了2秒刷新间隔。

[root@server1 ~]# $GOBIN/rtop root@192.168.43.131 2


                               
登录/注册后可看大图


                               
登录/注册后可看大图

总结

]rtop 是一个简单的、无代理的远程服务器监控工具,可通过 SSH 运行。它不需要在远程机器上安装任何代理软件。

www.pcpop.com/doc/4/4506/4506557.shtml

www.pcpop.com/doc/4/4517/4517127.shtml

mb.it168.com/a2016/1014/2975/000002975988.shtml



您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-1-23 13:35 , Processed in 0.065595 second(s), 10 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表