我是使用伪造的新手,我想知道如何在laravel 5中连接到我的一台服务器(SFTP + SSH)。
我的目标是使用Laravel将文件上传到另一台服务器。
到目前为止:
Config::set('remote.connections.tenant.server', 'ip adress server');
Config::set('remote.connections.tenant.port', '22');
Config::set('remote.connections.tenant.host', 'example.com');
Config::set('remote.connections.tenant.user', 'username provided in the mail from forge');
Config::set('remote.connections.tenant.pass', 'password provided in the mail from forge');
Config::set('remote.connections.tenant.key', 'path to the key stored inside my application');
SSH::into('tenant')->put($localFile, $remotePath);
“Example.com只是一个演示名称”
我收到此错误:
无法连接到:22。错误110.连接超时
我是朝着正确的方向前进,还是这完全错了?非常感谢帮助,谢谢!