溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Polysh中怎么實現(xiàn)多日志查詢

發(fā)布時間:2021-07-22 17:10:37 來源:億速云 閱讀:153 作者:Leah 欄目:服務器

這篇文章將為大家詳細講解有關Polysh中怎么實現(xiàn)多日志查詢,文章內(nèi)容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

一、Polysh簡介

Polysh 是一個交互式命令,可以在一臺服務器上批量的對一批服務器進行處理,運行交互式命令。Polysh可以同時登錄多個遠程主機,而不需要通過relay一臺一臺的登錄,并執(zhí)行相同的指令,方便了問題的排查和定位,大大減少了我們的工作量。

Polysh is a tool to aggregate several remote shells into one. It is used to launch an interactive remote shell on many machines at once. It is written in Python and requires Python ≥ 2.4.

注: 官方解釋:Polysh 是一個由幾個遠程腳本集合而成的工具,它被用于在許多服務器上運行一個交互式的遠程腳本,由 Python 編寫,最低要求為 Python 2.4 。

二、polysh安裝

通過relay登錄staging機器,執(zhí)行如下命令安裝polysh。安裝目錄為用戶目錄: /opt/hl/。

1.已安裝python的安裝

wget wget http://guichaz.free.fr/polysh/files/polysh-0.4.tar.gz
tar -zxvf polysh-0.4.tar.gz

vim prod-polysh.sh

腳本內(nèi)容如下:

#10.252.176.33,10.252.176.35是你要鏈接的機器ip
python /opt/hl/polysh-0.4/polysh.py {10.252.176.33,10.252.176.35}

開放給其他用戶可執(zhí)行的權限

chmod 777 prod-polysh.sh

2.未安裝python的安裝

wget wget http://guichaz.free.fr/polysh/files/polysh-0.4.tar.gz
tar -zxvf polysh-0.4.tar.gz
cd polysh-0.4 
su 
python setup.py install

vim prod-polysh.sh

腳本內(nèi)容如下:

#10.252.176.33,10.252.176.35是你要鏈接的機器ip
python /opt/hl/polysh-0.4/polysh.py {10.252.176.33,10.252.176.35}

開放給其他用戶可執(zhí)行的權限

chmod 777 prod-polysh.sh

三、Xshell配置Xagent(mac可跳過這一步)

打開文件-屬性,選擇SSH選項,選擇”使用密碼處理的Xagent(SSH代理)”。然后將Xshell重啟。

四、polysh使用

4.1.使用方法一

polysh 10.252.176.33 10.252.176.35

4.2.使用方法二

./prod-polysh.sh

則會出現(xiàn)如下提示信息

[---hl-----]$ ./prod-polysh.sh
ready (8)

ready (8) 表示 8臺機器已經(jīng)連接完畢,可以執(zhí)行查詢命令。exit或Crtl+z都可以退出。

4.3.執(zhí)行命令

ready (8)>cd /opt/hl
ready (8)>pwd

顯示如下:

10.252.176.33: /opt/hl
10.252.176.35 : /opt/hl

五、源碼

可以通過git獲取polysh的源碼

git clone git://repo.or.cz/polysh.git

六、其他

以冒號開頭的指令不會發(fā)送到遠程主機,polysh會執(zhí)行以冒號開頭的指令,例如:

ready (2)> :help 
:add Add one or many remote shells. 
:chdir Change the current directory of polysh (not the remote shells). 
:disable Disable sending commands to remote shells. 
:enable Enable sending commands to remote shells. 
:export_vars Export some environment variables on enabled remote shells. 
:help List control commands or show their documentations. 
:hide_password Do not echo the next typed line. 
:list List remote shells and their states. 
:purge Delete disabled remote shells. 
:quit Quit polysh. 
:reconnect Try to reconnect to disconnected remote shells. 
:rename Rename all enabled remote shells with the argument. 
:replicate Copy a path from one remote shell to all others 
:reset_prompt Change the prompt to be recognized by polysh. 
:send_ctrl Send a control character to remote shells. 
:set_debug Enable or disable debugging output for remote shells. 
:set_log Duplicate every console I/O into the given local file. 
:show_read_buffer Print the data read by remote shells. 
:upload Upload the specified local path to enabled remote shells.

關于Polysh中怎么實現(xiàn)多日志查詢就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI