- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
运行 fabric python API 并在主机“a-stor1”上看到“ fatal error :不兼容的 ssh 对等体(没有可接受的 kex 算法)”,但在“rack1-app1”上运行良好。我能看到的唯一区别是“rack1-app1”正在运行 openssl 1.0.1-4ubuntu5.3,而“a-stor1”正在运行 1.0.1-4ubuntu5.21。
Brians-MacBook-Pro:initial bohalloran$ python tests/test_fabric.py
[rack1-app1] Executing task 'testIt'
[rack1-app1] run: uptime
[rack1-app1] out: 13:07:43 up 24 days, 19:18, 1 user, load average: 0.07, 0.05, 0.05
[rack1-app1] out:
[a-stor1] Executing task 'testIt'
[a-stor1] run: uptime
ERROR:paramiko.transport:Exception: Incompatible ssh peer (no acceptable kex algorithm)
ERROR:paramiko.transport:Traceback (most recent call last):
ERROR:paramiko.transport: File "/Library/Python/2.7/site-packages/paramiko/transport.py", line 1614, in run
ERROR:paramiko.transport: self._handler_tableptype
ERROR:paramiko.transport: File "/Library/Python/2.7/site-packages/paramiko/transport.py", line 1694, in _negotiate_keys
ERROR:paramiko.transport: self._parse_kex_init(m)
ERROR:paramiko.transport: File "/Library/Python/2.7/site-packages/paramiko/transport.py", line 1809, in _parse_kex_init
ERROR:paramiko.transport: raise SSHException('Incompatible ssh peer (no acceptable kex algorithm)')
ERROR:paramiko.transport:SSHException: Incompatible ssh peer (no acceptable kex algorithm)
ERROR:paramiko.transport:
Fatal error: Incompatible ssh peer (no acceptable kex algorithm)
Underlying exception:
Incompatible ssh peer (no acceptable kex algorithm)
Aborting.
Incompatible ssh peer (no acceptable kex algorithm)
Underlying exception:
Incompatible ssh peer (no acceptable kex algorithm)
Brians-MacBook-Pro:initial bohalloran$ cat tests/test_fabric.py
from fabric.api import env, run, prefix, hide, settings
from fabric import tasks
import logging
env.hosts = ['rack1-app1', 'a-stor1']
env.user = 'storiant'
env.password = 'ST0r!ant'
logging.basicConfig()
cmd = 'uptime'
def main():
tasks.execute(testIt)
def testIt():
with settings(warn_only = True):
run(cmd)
if name == "main":
main()
Brians-MacBook-Pro:initial bohalloran$
Brians-MacBook-Pro:initial bohalloran$ python
Python 2.7.6 (default, Sep 9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
import paramiko
print paramiko.version
1.15.2
^D
Brians-MacBook-Pro:initial bohalloran$
Brians-MacBook-Pro:initial bohalloran$ openssl version
OpenSSL 0.9.8zd 8 Jan 2015
Brians-MacBook-Pro:initial bohalloran$
storiant@Rack1-app1:~$ openssl version
OpenSSL 1.0.1 14 Mar 2012
storiant@Rack1-app1:~$
storiant@a-stor1:~$ openssl version
OpenSSL 1.0.1 14 Mar 2012
storiant@a-stor1:~$
storiant@a-stor1:~$ dpkg -l | grep libgnutls
ii libgnutls26 2.12.14-5ubuntu3.1 GNU TLS library - runtime library
storiant@a-stor1:~$ dpkg -l | grep openssl
ii libevent-openssl-2.0-5 2.0.16-stable-1ubuntu0.1 Asynchronous event notification library (openssl)
ii openssl 1.0.1-4ubuntu5.21 Secure Socket Layer (SSL) binary and related cryptographic tools
storiant@a-stor1:~$
storiant@Rack1-app1:~$ dpkg -l | grep libgnutls
ii libgnutls26 2.12.14-5ubuntu3.1 GNU TLS library - runtime library
storiant@Rack1-app1:~$ dpkg -l | grep openssl
ii libevent-openssl-2.0-5 2.0.16-stable-1 Asynchronous event notification library (openssl)
ii openssl 1.0.1-4ubuntu5.3 Secure Socket Layer (SSL) binary and related cryptographic tools
storiant@Rack1-app1:~$
storiant@Rack1-app1:~$ uname -a
Linux Rack1-app1 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
storiant@Rack1-app1:~$
storiant@a-stor1:~$ uname -a
Linux a-stor1 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
storiant@a-stor1:~$
最佳答案
升级结构为我解决了问题(pip --upgrade fabric
)
关于python - fatal error : Incompatible ssh peer (no acceptable kex algorithm),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29754852/
使用Suitecrm 7.9.1 每当我尝试创建销售线索时(即提交创建销售线索表格后),我都会遇到以下错误。 每当我尝试导入csv文件时,都会遇到相同的错误。仅在实时服务器上发生此错误 Fatal e
Closed. This question is not reproducible or was caused by typos。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-to
我想在QNX上运行GoogleTestLibrary吗? 但是我收到此错误消息? ldd:FATAL: Could not load library libgtest.so.0 首先,我使用make命
尝试编译代码时,IDE 中显示的 fatal error 和非 fatal error 之间的主要区别是什么? 在这两种情况下,编译器都会显示一条错误消息,并且不会编译程序。 fatal error
当一个人试图编译代码时,在 IDE 中显示的 fatal error 和非 fatal error 之间的主要区别是什么? 在这两种情况下,编译器都会显示一条错误消息,并且程序不会被编译。 fatal
这个程序发出app: 2015/10/24 11:28:15 example.go:22: open some-crazy-non-existent-file: no such file or dir
因此,我正在从事一个项目,但是由于不断收到错误和警告,所以我遇到了一个问题。我对PHP还是很陌生,所以要保持柔和。使用PHP 5.5可以正常运行该程序。但是,当我在PHP 5.6中运行该程序时,会收到
在 WiX 安装程序中 - 如何自定义或覆盖 fatal error 对话框 ()?我想显示详细的错误消息而不是默认设置失败消息。 选项: 是否可以在 WiX 中调整 fatal error 对话框的
我正在尝试通过 Android 工具 > 重命名应用程序包 在 eclipse 中重命名我的 android 应用程序包。它正在生成错误说 A Fatal error occurred while p
我正在使用 Ubuntu 13.10 x64,我正在做一些开发人员正在使用 Windows 的项目,我最近将 git config core.eol 更改为“lf”和 core .autocrlf 为
嗯..世界上的每个服务都可以连接到我的动物园管理员,除了 kafka。下面是我在 server.properties 文件中的连接字符串 zk.connect=1.dzk.syd.druid.neo.
我正在 Java EE 7 中尝试一些东西,我已经构建了一个示例应用程序,可以在此处找到 https://github.com/kenparker/moviplex7.git . 在此过程中,我了解到
我正在尝试使用 bitbucket 中的 ssh 克隆我的存储库,但是每当我克隆存储库时,我都会得到: Connection to bitbucket.org closed by remote hos
该代码包括从一系列数字创建一个数组,以及第三个参数,其中它指示数字的步长,如果它的步长为 2,例如它来自 [1,3, 5] 代码工作正常,除非我以负数作为参数传递 step,例如NumberRange
我正在尝试在我的 ubuntu 中运行一个简单的 git pull 命令。直到几天前,它还可以完美地工作。不是它显示致命:无法访问“https://xxxxxx@bitbucket.org/repon
我知道已经有人问过类似的问题。 但是,我认为我的问题是由于我之前犯的一个错误,因此有所不同:让我解释一下。 一切都如我所愿顺利进行: git add . 我本地存储库中的所有文件。 git commi
我在尝试执行 Jenkins 作业时看到错误。 git 版本 1.8.3.1 Jenkins 2.46.2.1-滚动 我尝试将 git 升级到更高版本,但仍然通过关注 How to install l
Image of the output in the browser 我正在离线处理一个项目。我有一个名为 index.php 的文件。 现在我想在可以编辑的浏览器 sp 中启动。 但是当我尝试通过
我正在AWS的Linux机器上运行RServer Studio。 我尝试安装ModelMetrics的依赖项caret,并收到此错误: auc_.cpp:2:10: fatal error: omp.
我似乎没有重复发帖,所以这是详细信息... 当我使用 XOM(XML 对象模型,Java 库)中的非静态方法 Builder.build() 解析文档时,在 Eclipse 控制台中我得到: [Fat
我是一名优秀的程序员,十分优秀!