CentOS uses expect to remotely execute scripts and commands in batches

CentOS uses expect to remotely execute scripts and commands in batches

Sometimes we may need to operate servers in batches, such as uploading a file on the server, installing software, executing a command and script, restarting services, restarting servers, etc. If we operate them one by one manually, it will be very cumbersome and waste manpower.

At this time, we can use expect to send instructions to the target server to implement batch operations.

The following example will batch copy a file on centos to other service providers and execute the corresponding command

1. Install expect on centos

yum install expect

2. Write the expect script copyfilebatch.sh

The following script will copy an rc.local file to the servers with intranet IP addresses 192.168.0.102 to 192.168.0.112. After the copy is successful, execute the chmod command to restart the servers respectively.

#!/usr/bin/expect -f
set password rootpassword

for {set i 102} {$i <= 112} {incr i} {
  set ip "192.168.0.$i"
  puts "$ip"


  spawn ssh -o StrictHostKeyChecking=no $ip
  set timeout 3
  expect "root@$ip's password:"
  set timeout 3
  send "$password\r"
  set timeout 3
  send "exit\r"


  spawn scp /home/install/rc.local root@$ip:/etc/rc.d/rc.local
  set timeout 3
  expect "root@$ip's password:"
  set timeout 3
  send "$password\r"
  set timeout 3
  send "exit\r"




  spawn ssh root@$ip

  expect {
  "*yes/no" { send "yes\r"; exp_continue}
  "*password:" { send "$password\r" }
  }
  expect "#*"

  #Command to be executed send "chmod +x /etc/rc.d/rc.local\r"
  send "reboot\r"
  send "exit\r"
  expect eof
}

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the "syntax error: unexpected end of file" message when running .sh script in CentOS7
  • Use crontab to run the script of executing jar program regularly in centOS6
  • CentOS 6.5 configuration ssh key-free login to execute pssh command explanation
  • How to execute PHP scheduled tasks in CentOS7
  • Detailed explanation of using crontab to execute tasks regularly under CentOS 7
  • Solve the problem that /etc/rc.local does not execute when starting centos7
  • How to set up a scheduled task to execute a specified script in centos

<<:  Example analysis of mysql user rights management

>>:  Teach you how to subcontract uniapp and mini-programs (pictures and text)

Recommend

How to implement DIV's blur function

Use anti-shake to make DIV disappear when the mou...

Steps for importing tens of millions of data into MySQL using .Net Core

Table of contents Preliminary preparation Impleme...

Quickly solve the problem that the mysql57 service suddenly disappeared

one, G:\MySQL\MySQL Server 5.7\bin> mysqld --i...

Mysql optimization Zabbix partition optimization

The biggest bottleneck of using zabbix is ​​the d...

How to quickly use mysqlreplicate to build MySQL master-slave

Introduction The mysql-utilities toolset is a col...

3 common errors in reading MySQL Binlog logs

1. mysqlbinlog: [ERROR] unknown variable 'def...

How to add automatic completion commands for docker and kubectl on Mac

Introduction to kubectl kubectl is a command line...

Let you understand the deep copy of js

Table of contents js deep copy Data storage metho...

Vue implements login type switching

This article example shares the specific code of ...

Native js implements a minesweeper game with custom difficulty

This article example shares the specific code of ...

Web Design Tutorial (8): Web Page Hierarchy and Space Design

<br />Previous article: Web Design Tutorial ...

WeChat applet implements simple chat room

This article shares the specific code of the WeCh...

Detailed explanation of important cascading concepts in CSS

Recently, I encountered a problem in the process ...

An Uncommon Error and Solution for SQL Server Full Backup

1. Error details Once when manually performing a ...