Глупый вопрос, попытка подключиться к моему экземпляру amazon centos с помощью узла-s sh
при подключении терминала: s sh -i myCert.pem centos@10.10.10.10
let fs = require('fs')
let path = require('path');
const node_ssh = require('node-ssh');
const ssh = new node_ssh();
ssh.connect({
host: 'http://10.10.10.10',
username: 'centos',
privateKey: myCert.pem
}).then(resp => {
console.log(resp);
ssh.dispose();
});
Здесь выдается ошибка:
{ Error: getaddrinfo ENOTFOUND http://10.10.10.10 http://10.10.10.10:22
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:58:26)
errno: 'ENOTFOUND',
code: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: 'http://10.10.10.107',
host: 'http://10.10.10.10',
port: 22,
level: 'client-socket' } 'ERROR'