Shell scripts automatically log on to the server and install JDK (Code tutorial), shelljdk

Source: Internet
Author: User

Shell scripts automatically log on to the server and install JDK (Code tutorial), shelljdk
1. Write the installation script

Install. sh

! /Bin/bashURL = "https: // ***/jdk-8u161-linux-x64.tar.gz "yum install-y wgetwget $ URLtar-zxvf jdk-8u161-linux-x64.tar.gz-C/usr/localcat>/etc/profile <EOFexport JAVA_HOME =/usr/local/ jdk1.8.0 _ 161 export JRE_HOME =\\ {JAVA_HOME}/jreexport PATH =\$ {JAVA_HOME}/bin: \ $ PATHexport CLASSPATH =. :\$ {AVA_HOME}/lib :\$ {JRE_HOME}/libEOF
2. ssh password-free login and run the installation script
#! /Bin/bashSERVERS = "centos01 centos02 centos03 centos04" PASSWORD = centos # auto login to serverauto_ssh_login () {objective CT-c "set timeout-1; spawn ssh-copy-id $1; keep CT {* (yes/no) * {send -- yes \ r; exp_continue;} * password: * {send -- $2 \ r; exp_continue;} eof {exit 0 ;}}" ;}ssh_copy_id () {for SERVER in $ SERVERS do auto_ssh_login $ SERVER $ PASSWORD done} ssh_copy_idfor SERVER in $ SERVERSdo scp install. sh root @ $ SERVER:/root ssh root @ $ SERVER/root/install. shdone

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.