我想使用SSH在远程服务器中执行一些命令。 这是我的配置:
'connections' => [
'production' => [
'host' => '172.55.81.20',
'username' => 'user',
'password' => '',
'key' => 'C:\cygwin64\home\oqannouf\.ssh\id_rsa'
],]
我试过这个SSH::into('production')->run(['ls']);
但我得到以下错误:
Unable to connect to remote server
没有其他信息解释为什么它不起作用。
注意: