91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Centos7中如何部署pssh

發布時間:2022-02-17 10:42:58 來源:億速云 閱讀:192 作者:iii 欄目:開發技術

這篇文章主要介紹“Centos7中如何部署pssh”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Centos7中如何部署pssh”文章能幫助大家解決問題。

pssh是python寫的可以并發在多臺機器上批量執行命令的工具,它的用法可以媲美ansible的一些簡單用法,執行起來速度比ansible快它支持文件并行復制,遠程命令執行,殺掉遠程主機上的進程等等。

Centos7中如何部署pssh

下載pssh安裝包

[root@localhost ~]# wget https://files.pythonhosted.org/packages/60/9a/8035af3a7d3d1617ae2c7c174efa4f154e5bf9c24b36b623413b38be8e4a/pssh-2.3.1.tar.gz

安裝依賴包

[root@localhost ~]# yum install -y make gcc gcc++ python-devel python-pip

安裝pssh

[root@localhost ~]# tar xf pssh-2.3.1.tar.gz[root@localhost ~]# cd pssh-2.3.1[root@localhost ~]# python setup.py install

配置免密登錄

[root@localhost ~]# ssh-keygenGenerating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:3antaxjGw+hdgfSlrXLYhUe5vgHe9b0ehh/gUY9E8Eg root@localhost.localdomain
The key's randomart image is:
+---[RSA 2048]----+
|            E... |
|          .. ++  |
|         . o.*oo |
|         ...*o*.o|
|        S+.+o@..+|
|        . OoB B o|
|       . o.B.o *.|
|        . o.. +.o|
|           .o..o |
+----[SHA256]-----+
[root@localhost ~]# cd /root/.ssh/
[root@localhost .ssh]# ls
id_rsa  id_rsa.pub
[root@localhost .ssh]# ssh-copy-id 172.16.1.112
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
The authenticity of host '172.16.1.112 (172.16.1.112)' can't be established.
ECDSA key fingerprint is SHA256:yFvaxR1x5YDhhe+6xR/Ou6Sm+YPYvPAoiLVKt9mAnXA.
ECDSA key fingerprint is MD5:0d:c4:79:bc:36:7a:a4:82:95:4f:d5:d0:a3:c8:7d:2e.
Are you sure you want to continue connecting (yes/no)? yes
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@172.16.1.112's password:

Number of key(s) added: 1

Now try logging into the machine, with:   "ssh '172.16.1.112'"
and check to make sure that only the key(s) you wanted were added.
[root@localhost .ssh]# ssh-copy-id 172.16.1.16
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
The authenticity of host '172.16.1.16 (172.16.1.16)' can't be established.
ECDSA key fingerprint is SHA256:ANzlXzrGA87YLI2vzkPJ/iNPiSQ5JStJc95948jE8aw.
ECDSA key fingerprint is MD5:f9:f1:1b:5a:99:64:d8:d8:e9:9b:e6:bb:c3:d5:bd:e7.
Are you sure you want to continue connecting (yes/no)? yes
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@172.16.1.16's password:

Number of key(s) added: 1

Now try logging into the machine, with:   "ssh '172.16.1.16'"
and check to make sure that only the key(s) you wanted were added.

測試免密登錄

[root@localhost ~]# ssh 172.16.1.112Last login: Tue Jun  2 09:44:24 2020 from 172.16.1.16
[root@localhost ~]# ssh 172.16.1.16Last login: Tue Jun  2 09:30:47 2020 from 172.16.1.100

測試pssh

創建aaa文件存放ip地址

[root@localhost ~]# cat aaa172.16.1.16
172.16.1.112

批量執行date命令

[root@localhost ~]# pssh -h aaa -l root -P "date"172.16.1.16: 2020年 06月 02日 星期二 09:59:48 CST
[1] 09:59:48 [SUCCESS] 172.16.1.16
172.16.1.112: 2020年 06月 02日 星期二 09:59:48 CST
[2] 09:59:48 [SUCCESS] 172.16.1.112

查看磁盤

[root@localhost ~]# pssh -h aaa -l root -P "lsblk"172.16.1.16: NAME            MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda               8:0    0   20G  0 disk
├─sda1            8:1    0    1G  0 part /boot
└─sda2            8:2    0   19G  0 part
 ├─centos-root 253:0    0   17G  0 lvm  /
 └─centos-swap 253:1    0    2G  0 lvm  [SWAP]
sr0              11:0    1  4.2G  0 rom  
[1] 10:13:02 [SUCCESS] 172.16.1.16
172.16.1.112: NAME            MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda               8:0    0   20G  0 disk
├─sda1            8:1    0    1G  0 part /boot
└─sda2            8:2    0   19G  0 part
 ├─centos-root 253:0    0   17G  0 lvm  /
 └─centos-swap 253:1    0    2G  0 lvm  [SWAP]
sr0              11:0    1  4.2G  0 rom  
[2] 10:13:03 [SUCCESS] 172.16.1.112

pssh部署完畢!

關于“Centos7中如何部署pssh”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

衡东县| 清新县| 陕西省| 望城县| 郑州市| 定远县| 广灵县| 牟定县| 沐川县| 华坪县| 伊吾县| 定州市| 华容县| 曲周县| 蒙阴县| 秭归县| 乌审旗| 吉林省| 普兰店市| 曲周县| 金坛市| 年辖:市辖区| 额济纳旗| 崇礼县| 长治市| 临夏县| 西吉县| 同心县| 廉江市| 江山市| 汪清县| 姚安县| 凤翔县| 竹山县| 娄烦县| 孝昌县| 万全县| 济宁市| 汽车| 新蔡县| 永昌县|