本文介绍了SLIME和SWANK入门:Lisp连接意外关闭:连接被远程对等断开的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用SLIME-CONNECT功能来访问具有sbcl的远程服务器.我按照 Marco Baringer 中的slime.mov电影中的所有步骤进行操作,但是在创建时遇到了麻烦用于史莱姆的ssh连接.这是已经在远程计算机上启动了swank服务器之后.我是这样做的:

I was trying to use the slime-connect function to get access to a remote server with sbcl. I followed all the steps from the slime.mov movie from Marco Baringer, but I got stuck when creating the ssh connection for slime. This is after already starting the swank server on the remote machine. I did it like this:

ssh -L 4005:127.0.0.1:4005 [email protected]

在本地SLIME上出现此错误:

And I got this errors, on local SLIME:

Lisp连接意外关闭:连接被远程同位断开

Lisp connection closed unexpectedly: connection broken by remote peer

...以及在远程服务器上:

...and on the remote server:

渠道3:打开失败:连接失败:连接被拒绝

channel 3: open failed: connect failed: Connection refused

可能有什么问题吗?

推荐答案

您是否检查过您使用的SLIME和SWANK版本是否相同?当我使用SLIME会话的这两部分的不匹配版本时,发生了奇怪的事情.

Have you checked that the version of SLIME and SWANK you use are the same? I've had odd things happening when I've used mismatched versions of those two halves of a SLIME session.

这篇关于SLIME和SWANK入门:Lisp连接意外关闭:连接被远程对等断开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-22 01:10