gpt4 book ai didi

javascript - '类型错误 : Object is not a function' when using tunnel-ssh

转载 作者:行者123 更新时间:2023-11-30 00:15:44 24 4
gpt4 key购买 nike

我正在运行流行的 NPM 包教程中的基本示例 tunnel-ssh .这是代码:

var tunnel = require('tunnel-ssh');
var config = {
username:'root',
password:'secret',
host:'remote.mysql.server.com',
port:3306
}

tunnel(config, function(e, sshTunnel){
//Now, you should be able to connect to the tunnel via localhost:3336.
});

当然,我使用我自己的数据库的凭据运行它。但是,我在运行它时总是会收到此错误:

TypeError: object is not a function

有人知道这是怎么回事吗?

最佳答案

var tunnel = require('tunnel-ssh');

var config = {username: 'vagrant',host: '192.168.33.2', port:3307, dstPort:3306 }

tunnel.tunnel(config, function(e, sshTunnel){});

我在 192.168.33.2 中添加了我的 key ,并将目标端口 3306 转发到我的本地端口 3307。

我在 RPEL Node 版本 v0.12.4 上运行它。它的工作。

关于javascript - '类型错误 : Object is not a function' when using tunnel-ssh,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34799377/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com