這篇文章給大家分享的是有關(guān)python如何實(shí)現(xiàn)輕量級(jí)自動(dòng)化運(yùn)維工具的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)專業(yè)提供成都服務(wù)器托管服務(wù),為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購買成都服務(wù)器托管服務(wù),并享受7*24小時(shí)金牌售后服務(wù)。
基于python編寫,可在多臺(tái)服務(wù)器上執(zhí)行命令的工具,也可實(shí)現(xiàn)文件復(fù)制,提供了基于ssh和scp的多個(gè)并行工具
項(xiàng)目:http://code.google.com/p/parallel-ssh/
語法:
Usage: pscp.pssh [OPTIONS] local remote
常用選項(xiàng):
--version:查看版本 -h:主機(jī)文件列表,內(nèi)容格式”[user@]host[:port]” -H:主機(jī)字符串,內(nèi)容格式”[user@]host[:port]” -A:手動(dòng)輸入密碼模式 -i:每個(gè)服務(wù)器內(nèi)部處理信息輸出 -l:登錄使用的用戶名 -p:并發(fā)的線程數(shù)【可選】 -o:標(biāo)準(zhǔn)輸出文件的輸出目錄(可選) -e:標(biāo)準(zhǔn)錯(cuò)誤文件的輸出目錄(可選) -t:TIMEOUT 超時(shí)時(shí)間設(shè)置,0無限制【可選】 -O:SSH的選項(xiàng) -P:打印出服務(wù)器返回信息 -v:詳細(xì)模式
【例1】通過pssh批量向主機(jī)文件列表中的主機(jī)執(zhí)行echo "hello pssh"。
[root@CentOS7 ~]# cat host.txt 172.20.200.200 192.168.8.61 [root@CentOS7 ~]# pssh -h host.txt -i echo "hello pssh" [1] 16:31:10 [SUCCESS] 192.168.8.61 hello pssh [2] 16:31:10 [SUCCESS] 172.20.200.200 hello pssh
【例2】將標(biāo)準(zhǔn)錯(cuò)誤和標(biāo)準(zhǔn)正確重定向都保存至本地主機(jī)的/app目錄下。
[root@CentOS7 ~]# pssh -h host.txt -o /app/ -e /app/ -i echo "hello pssh" [1] 16:52:32 [SUCCESS] 192.168.8.61 hello pssh [2] 16:52:32 [SUCCESS] 172.20.200.200 hello pssh [root@CentOS7 ~]# ls /app/ 172.20.200.200 192.168.8.61 [root@CentOS7 ~]# cat /app/192.168.8.61 hello pssh
功能:將本地文件批量復(fù)制到遠(yuǎn)程主機(jī)
語法:
[root@CentOS7 ~]# pscp.pssh --help Usage: pscp.pssh [OPTIONS] local remote
選項(xiàng):基本與pssh命令一致,不過有個(gè)-r選項(xiàng)可以遞歸復(fù)制目錄
【例1】將本地/etc/fstab文件批量復(fù)制到主機(jī)列表文件中的主機(jī)的/app目錄下
[root@CentOS7 ~]# pscp.pssh -h host.txt /etc/fstab /app/ [1] 17:19:32 [SUCCESS] 192.168.8.61 [2] 17:19:32 [SUCCESS] 172.20.200.200 [root@CentOS7 ~]# pssh -h host.txt -i ls /app/ -l [1] 17:25:14 [SUCCESS] 192.168.8.61 total 4 -rw-r--r-- 1 root root 595 Nov 8 20:27 fstab [2] 17:25:14 [SUCCESS] 172.20.200.200 total 4 -rw-r--r-- 1 root root 595 Nov 9 17:19 fstab
【例2】將本地目錄/test/批量復(fù)制到主機(jī)文件列表中的主機(jī)的/app目錄
[root@CentOS7 ~]# pscp.pssh -h host.txt -r /test/ /app/ [1] 17:23:14 [SUCCESS] 192.168.8.61 [2] 17:23:14 [SUCCESS] 172.20.200.200 [root@CentOS7 ~]# pssh -h host.txt -i ls /app/ -l [1] 17:26:33 [SUCCESS] 192.168.8.61 total 8 -rw-r--r-- 1 root root 595 Nov 8 20:27 fstab drwxr-xr-x 2 root root 4096 Nov 8 20:33 test [2] 17:26:33 [SUCCESS] 172.20.200.200 total 4 -rw-r--r-- 1 root root 595 Nov 9 17:19 fstab drwxr-xr-x 2 root root 48 Nov 9 17:25 test
功能:將遠(yuǎn)程主機(jī)的文件批量復(fù)制到本地,與pscp.pssh命令功能相反。
語法:
pslurp [-vAr] [-h hosts_file] [-H [user@]host[:port]] [-l user] [-p par] [-o outdir] [-e errdir] [-t timeout] [-O options] [-xargs] [-X arg] [-L localdir] remote local(本地名)
選項(xiàng):
-L 將文件從遠(yuǎn)程主機(jī)復(fù)制到給定的本地目錄,local是下載到本地后的名稱
【例】批量下載目標(biāo)服務(wù)器的passwd文件至本地目錄/app下,并更名為user
[root@CentOS7 ~]# pslurp -h host.txt -L /app/ /etc/passwd user [1] 17:35:38 [SUCCESS] 192.168.8.61 [2] 17:35:38 [SUCCESS] 172.20.200.200 [root@CentOS7 ~]# tree /app/ /app/ ├── 172.20.200.200 │ └── user └── 192.168.8.61 └── user 2 directories, 2 files
感謝各位的閱讀!關(guān)于“python如何實(shí)現(xiàn)輕量級(jí)自動(dòng)化運(yùn)維工具”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!