在远程服务器上运行 CouchDB Futon
我用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应用程序/进程已在您的计算机上使用端口 5985 运行。使用不同的端口或关闭具有端口 5985 和端口 5985 的任何应用程序/进程。再次启动 ssh 隧道。
尝试使用不同的端口
或者您可以终止具有端口 5985 的应用程序/进程
。再次启动 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
Or You can kill application/process has port 5985.
Start the ssh tunnel again.
ssh -fNg -L 5985:127.0.0.1:5984 [email protected]
这与 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.