码迷,mamicode.com
首页 >  
搜索关键字:批量ssh信任 expect ssh-copy-id    ( 1515个结果
创建一个git仓库
1.useradd git2.cd git mkdir project.git cd project.git3.git init --bare4.vi config 添加 denyCurrentBranch = ignore5.ssh-keygen -t rsa6. ssh-copy-id -i ....
分类:其他好文   时间:2015-05-07 16:32:12    阅读次数:93
自动scp(二)
#!/usr/bin/expect -fspawn scp /shell/bms3acount.txt root@192.168.35.186:/root/BMS/set timeout 20expect "(yes/no)?" {send "yes\r"}expect "password:" {s...
分类:其他好文   时间:2015-05-06 14:59:24    阅读次数:168
ssh 免密码设置失败原因总结
先复习一下设置ssh免密码操作的步骤:进入主目录cd生成公钥ssh-keygen -t rsa -P '' (注:最后是二个单引号,表示不设置密码)然后分发公钥到目标机器ssh-copy-id -i ~/.ssh/id_rsa.pub 对方机器IP (注意不要忘记了参数-i)注:ssh-copy-i...
分类:其他好文   时间:2015-05-06 14:59:09    阅读次数:139
ssh-agent用法
ssh-agent一直不知道啥是ssh-agent,今晚看了几篇文章,终于领悟到了。一般的ssh过程 ssh-keygen 生成一个公钥私钥,注意,这里生成私钥的时候可以选密码,也可以不选密码。 openssh牛的地方在于能用key 登陆,而非用密码。 然后做免密码登陆,一般是复制到.ssh/authorized_keys ,或者用ssh-copy-id 。 其实第二步做完以后基本上就不输密码登陆。...
分类:其他好文   时间:2015-05-05 06:35:57    阅读次数:123
mysql+drbd+corosync实现高可用mysql
RHEL6node1192.168.1.7node2192.168.1.8双机互信进192.168.1.7 #ssh-keygen-trsa~/.ssh/id_rsa #ssh-copy-id-i~/.ssh/id_rsa.pubroot@192.168.1.8 进192.168.1.8 #ssh-keygen-trsa~/.ssh/id_rsa #ssh-copy-id-i~/.ssh/id_rsa.pubroot@192.168.1.7编辑/etc/hosts文件127.0.0.1lo..
分类:数据库   时间:2015-05-03 23:48:35    阅读次数:296
如何将秘钥分发到多台机器
共有三台机器192.168.2.21192.168.2.22192.168.2.24都建有zabbix这个用户,密码统一为zabbix192.168.2.21为资源分发中心,zabbix用户用于秘钥分发hosts是一个文本文件,用于存储ip列表#!/bin/bashforXin`cathosts`doexpect-c"settimeout-1spawnssh-copy-idzabbix@${X}expect\"*..
分类:其他好文   时间:2015-05-02 23:30:54    阅读次数:154
SSH自动登录脚本
#!/usr/bin/expect -f set timeout 10 set name [lindex $argv 0] set pwd [lindex $argv 1] set ip [lindex $argv 2] spawn ssh -l $name $ip expect "password:" send "$pwd\r" interact...
分类:其他好文   时间:2015-04-27 11:22:01    阅读次数:110
mysql学习笔记一
数据库相关操作 1、创建数据库 create database databasename 成功返回Query OK 失败返回Error 1007 2、查看所有的数据库 show databases 注意:是databases,复数 3、选择数据库 use databasename 返回是Database changed  知道这个在使用expect时有用 失败返回Err...
分类:数据库   时间:2015-04-26 10:53:48    阅读次数:215
文件传输脚本(expect+rsync)
完成此脚本,主要是为了将本地服务器上的文件同步到腾讯云跳板机,然后再中转上传到腾讯云服务器。当然这也只是初步的方案。#vim/data/scripts/put_file.exp#!/usr/bin/expect ######################################################################## #pushlocalserver’sf..
分类:其他好文   时间:2015-04-25 16:49:00    阅读次数:189
设计模式—适配器模式
适配器模式英文原文是:Convert the interface of a class into anther interface clients expect. Adapter lets classes work together that couldni`t otherwise because of incompatible interface. 意思是将一个类的接口变化成客户端所期待的另一种...
分类:其他好文   时间:2015-04-23 11:07:25    阅读次数:142
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!