码迷,mamicode.com
首页 >  
搜索关键字:批量ssh信任 expect ssh-copy-id    ( 1515个结果
如何使程序更高效的执行?
在codewars网站做题,做到一下一道题。var add = function (a, b) { return a + b; };var lazy_sum = make_lazy(add, 2, 3);Test.expect(lazy_sum() === 5, 'Evaluates the exp...
分类:其他好文   时间:2015-04-22 00:22:52    阅读次数:113
ceph部署过程
1.在每个节点执行useradd命令添加一个用户(如ceph),密码设为空 2.在mon.0节点执行ssh-keygen命令,然后执行ssh-copy-id将ssh public key复制到各个节点。修改 sshd config文件,开启远程无密码登录。 3.ceph-d...
分类:其他好文   时间:2015-04-21 18:53:11    阅读次数:325
简单实现ssh无密码登录
一:先来看一下效果:二:实现的步骤(在机器172.16.0.1(centos系统)执行下列命令,就可以远程无密码登录172.16.0.2):1:ssh-keygen-trsa(回车回车)2:ssh-copy-id-i/root/.ssh/id_rsa.pubroot@172.16.0.2(172.16.0.2换成ssh-server的ip即可)三:通过expect或者<<EOF直接输入给..
分类:其他好文   时间:2015-04-18 14:40:39    阅读次数:115
Linux下普通用户修改时间问题!
今天公司突然要把所有测试环境ROOT密码收回,只发放普通用户权限。因为测试环境要经常改时间来测试,Linux下普通用户无修改时间权限。原本我的思路是写一个脚本(自动sodu到ROOT用户执行修改时间在切换回普通用户)脚本如下:#!/bin/bashexp(){expect-c"spawnsu-root-c\"$2\"expe..
分类:系统相关   时间:2015-04-16 10:29:51    阅读次数:162
ssh-copy-id报错: Host key verification failed
/workspace:$ ssh-copy-id root@10.103.xx.xx -p 22022/usr/local/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that ...
分类:其他好文   时间:2015-04-13 16:27:46    阅读次数:2098
机器A scp 机器B不需要输入密码的详细步骤
机器A:macBook笔记本 机器B:linux台式机 需求:要在mac本上scp项目jar包到linux台式机上,但是每次都需要输入台式机的用户密码,如何不用输入密码? 网管意见:生成ssh key 步骤: 首先在台式机上执行命令: which ssh-copy-id /usr/bin/ssh-copy-id vim /usr/bin/ssh-copy-id查看s...
分类:其他好文   时间:2015-04-13 10:55:09    阅读次数:128
python expect 工作的使用代码
#!/usr/bin/env python#coding=utf-8'''Created on 2013-8-22@author: *****'''import MySQLdbimport timeimport pexpectimport subprocessimport osimport sock...
分类:编程语言   时间:2015-04-10 19:39:07    阅读次数:403
What is a Full Stack developer?
Is it reasonable to expect mere mortals to have mastery over every facet of the development stack? Probably not, but Facebook can ask for it. I was told at OSCON by a Facebook employee that they on...
分类:其他好文   时间:2015-04-08 13:21:59    阅读次数:192
shell scp免输入密码传输
#!/usr/bin/expect-f setdtime[lindex$argv0] setpassword111111 settimeout3000; spawn/usr/bin/scp/software/databk/$dtime.sqlcdczhangg@10.151.254.25:/software/mysqldata/ #spawnsshcdczhangg@10.151.254.25 expect{ "*yes/no"{send"yes\r";exp_continue} "*password:"{s..
分类:系统相关   时间:2015-04-05 19:02:31    阅读次数:204
[转载]使用expect实现shell自动交互
FROM:http://www.nginx.cn/1934.htmlshell脚本需要交互的地方可以使用here文档是实现,但是有些命令却需要用户手动去就交互如passwd、scp对自动部署免去用户交互很痛苦,expect能很好的解决这类问题。expect的核心是spawn expect send ...
分类:系统相关   时间:2015-04-01 13:06:57    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!