zoukankan      html  css  js  c++  java
  • 服务器免密登陆脚本

    yum install -y tcl tclx tcl-devel

    wget http://sourceforge.net/projects/expect/files/Expect/5.45/expect5.45.tar.gz/download

    tar xzvf download

    cd expect5.45

    ./configure

    make && make install

    ln -sf /data/expect5.45/libexpect5.45.so  /usr/lib64/libexpect5.45.so

    expect

     

    vim autossh.sh

     

    #!/usr/bin/expect

    set timeout 10 

    set username [lindex $argv 0]

    set password [lindex $argv 1]

    set hostname [lindex $argv 2]

    spawn ssh-copy-id -i /root/.ssh/id_rsa.pub $username@$hostname

    expect {

        "*assword" {send "$password ";}

        "yes/no" {send "yes ";exp_continue}

    }

    expect eof

     

    chmod +x autossh.sh

     

    ./autossh.sh root password ip

  • 相关阅读:
    ValueError:Expected more than 1 value per channel when training, got input size torch.Size([1, 512, 1, 1])
    指定GPU运行
    ModuleNotFoundError: No module named 'past'
    ImportError: libSM.so.6: cannot open shared object file: No such file or dir
    ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
    zsh: command not found: conda
    TypeError: Class advice impossible in Python3. Use the @implementer class decorator instead.
    数据结构(八)图
    数据结构(二)线性表
    数据结构(七)数与二叉树
  • 原文地址:https://www.cnblogs.com/bhan/p/9725210.html
Copyright © 2011-2022 走看看