google colab ssh连接超时

时间:2020-05-03 23:41:14

标签: ssh google-colaboratory ngrok

我正在尝试遵循许多教程和要点,例如:

var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add<App>("app"); builder.Services.AddTransient(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); await builder.Build().RunAsync(); https://gist.github.com/creotiv/d091515703672ec0bf1a6271336806f0

运行这些步骤时,似乎一切正常(我获得了root密码),但是我确实看到了:

https://stackoverflow.com/questions/48459804/how-can-i-ssh-to-google-colaboratory-vm/53252985#53252985

但是不幸的是,在所有步骤之后,当我在本地计算机上执行以下操作时:

invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.

我得到:

ssh -p17057 root@0.tcp.ngrok.io

我在香草Debian Buster上-进行调试的任何指针对于调试都是非常有用的

谢谢。

1 个答案:

答案 0 :(得分:0)

我也很难进入ngrok tcp隧道。我使用本地笔记本电脑作为colab VM的访问点。我所做的是在AWS上启动EC2实例,并改用它。另外,由于ec2机器已经具有公共IP,所以我使用了ssh反向隧道并完全放弃了对ngrok的需求。在这里检查我的答案:https://stackoverflow.com/a/63186681/4126114