1、端口问题造成的连接失败 remote-prepare:
??[sshexec]?Connecting?to?123.123.123.123:22
java.net.ConnectException:?Connection?timed?out 解决办法 修改build.xml,配置端口号? <target?name="rem...
分类:
其他好文 时间:
2014-08-05 19:39:00
阅读次数:
202
hadoop linux centos jdk ssh 防火墙...
分类:
系统相关 时间:
2014-08-05 15:48:29
阅读次数:
348
问题描述:虚拟机中用浏览器可以打开localhost的8080端口,但是从我电脑就不行可以ping通,可以ssh,就是连接不上8080,从虚拟机内部可以打开。通过netstat命令查看到没有绑定到具体的IP地址#netstat-an|grep8080tcp00:::8080:::*LISTEN问题分析和解决方案:TODO
分类:
其他好文 时间:
2014-08-05 11:39:00
阅读次数:
277
#test.sh
#!/bin/bash
dir=/home/test
whilereadline
do
host=`echo$line|awk‘{print$1}‘`
passwd=`echo$line|awk‘{print$2}‘`
$dir/expect_ssh.sh$host$passwd&
done<$dir/host.txt
#expect_ssh.sh
#!/usr/bin/envexpect
setHOST[lindex$argv0]
setPASSWD[lindex$argv..
分类:
系统相关 时间:
2014-08-05 11:33:10
阅读次数:
243
pssh 是一个python写的批量执行工具,非常适合30台服务器以内的一些重复性的操作安装很简单,只要python版本2.4 以上的都行用这个工作最好把机器做做好ssh信任关系,不然很麻烦 每次执行 都需要输入密码[root@localhost ~]# wget https://pypi.pyth...
分类:
其他好文 时间:
2014-08-05 02:57:28
阅读次数:
341
the host may be down,or there may be a problem with the network connection.Sometimes such problems can also be caused by a misconfigured firewall.遇到这样...
分类:
其他好文 时间:
2014-08-05 00:19:28
阅读次数:
454
操作系统:vmcentos6.5容器:docker前提:可以ssh的docker镜像已经创建第一种方法,手动创建1.在宿主机上生成新的密钥和公钥###ssh-keygen[-q][-bbits]-ttype[-Nnew_passphrase][-Ccomment][-foutput_keyfile]
#ssh-keygen的具体用法参考官方文档
ssh-keygen-q-N""-tdsa-f/root..
分类:
其他好文 时间:
2014-08-04 18:21:09
阅读次数:
326
sshuser@ip地址
输入登录密码即可进入远程主机
分类:
系统相关 时间:
2014-08-04 14:41:28
阅读次数:
203
利用expect的,首先查看expect,命令:which expect#!/usr/bin/expect -fspawn ssh 用户名@ip地址expect "assword:"send "password\r"interact自动输入密码,切换目录#!/usr/bin/expect -fspa...
分类:
其他好文 时间:
2014-08-04 10:37:46
阅读次数:
319
加密、解密的原理及Openssl创建CA和ssh的基础应用随着互联网的不断发展和技术的不断成熟,在互联网上传输文件不在安全,在需要传送重要的数据时就必须加密处理。密码算法分为三种:分别是对称加密,公钥加密,单向加密;以及需要对加密算法的认证,叫做认证协议。下面为大家概..
分类:
其他好文 时间:
2014-08-03 23:33:57
阅读次数:
739