I have problem on new app hosting (but old hosting, it work fine).
I base on
- Mac M1 12.5
- Mup 1.5.9
- Meteor 1.4
Error: All configured authentication methods failed
at doNextAuth (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-classic/lib/client.js:413:17)
at tryNextAuth (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-classic/lib/client.js:484:5)
at SSH2Stream.onUSERAUTH_FAILURE (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-classic/lib/client.js:597:5)
at SSH2Stream.emit (events.js:400:28)
at parsePacket (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-streams/lib/ssh.js:3682:10)
at SSH2Stream._transform (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-streams/lib/ssh.js:701:13)
at SSH2Stream.Transform._read (internal/streams/transform.js:205:10)
at SSH2Stream._read (/opt/homebrew/lib/node_modules/mup/node_modules/ssh2-streams/lib/ssh.js:253:15)
But I can login server with ssh root@x.x.x.x
module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: "x.x.x.",
username: "root",
pem: "~/.ssh/id_rsa"
// password: ""
// or neither for authenticate from ssh-agent
}
},