Hi, I'm trying to make an SSH connection to my server.
This is my configuration file. The username and password are 100% legal since in my machine from the terminal I can access it.
'servidor' => [
'host' => 'my_host',
'username' => 'admin',
'port' => 'my_port',
'password' => '*****',
'key' => '../config/id_rsa',
'keytext' => '',
'keyphrase' => '*****',
'agent' => '',
'timeout' => 30,
'directory' => '../config/id_rsa',
]
]
I am trying to access with the simple run command
SSH::into('servidor')->run('echo hello world;');
And I get this error

In this function:

Any suggestions?
Hi, I'm trying to make an SSH connection to my server.
This is my configuration file. The username and password are 100% legal since in my machine from the terminal I can access it.
'servidor' => [ 'host' => 'my_host', 'username' => 'admin', 'port' => 'my_port', 'password' => '*****', 'key' => '../config/id_rsa', 'keytext' => '', 'keyphrase' => '*****', 'agent' => '', 'timeout' => 30, 'directory' => '../config/id_rsa', ] ]I am trying to access with the simple run command
SSH::into('servidor')->run('echo hello world;');And I get this error

In this function:

Any suggestions?