在远程服务器上运行 CouchDB Futon

发布于 2024-10-02 21:10:16 字数 538 浏览 4 评论 0原文

我用的是 mac os..

我试过了

<块引用>

ssh -fNg -L 5985:127.0.0.1:5984 [电子邮件受保护]< /a>

但有这样的命令:

bind:地址已在使用中
channel_setup_fwd_listener:无法监听端口:5985
无法请求本地转发。

任何人都可以帮助我吗?

i using mac os..

i tried

ssh -fNg -L 5985:127.0.0.1:5984 [email protected]

but there's command like this:

bind: Address already in use
channel_setup_fwd_listener: cannot listen to port: 5985
Could not request local forwarding.

any one can help me??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空袭的梦i 2024-10-09 21:10:22

应用程序/进程已在您的计算机上使用端口 5985 运行。使用不同的端口或关闭具有端口 5985 和端口 5985 的任何应用程序/进程。再次启动 ssh 隧道。

尝试使用不同的端口

ssh -fNg -L 5986:127.0.0.1:5984 [email protected]

或者您可以终止具有端口 5985 的应用程序/进程

netstat -nap | grep 5985
kill -9 <pid-of-5985-process>

。再次启动 ssh 隧道。
ssh -fNg -L 5985:127.0.0.1:5984 [电子邮件&nb sp;受保护]

An application/Process is already running on your machine with port 5985. Use a different port or close whatever application/process has port 5985 & start the ssh tunnel again.

Try to use different port

ssh -fNg -L 5986:127.0.0.1:5984 [email protected]

Or You can kill application/process has port 5985.

netstat -nap | grep 5985
kill -9 <pid-of-5985-process>

Start the ssh tunnel again.
ssh -fNg -L 5985:127.0.0.1:5984 [email protected]

流心雨 2024-10-09 21:10:19

这与 couchdb 无关,这是一个 ssh 问题。 ssh 无法打开端口 5985,因为本地计算机上已经有一些正在运行的程序正在侦听该端口。使用不同的端口或关闭打开端口 5985 的任何进程。

This is nothing to do with couchdb, it's an ssh question. ssh cannot open port 5985 because there's already something running on your local machine listening on that port. Use a different port or close whatever process has port 5985 open.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文