我的 php 脚本生成了一个 excel 文件,我希望将这个文件传输到我们的文件服务器上,这与 web 不同。
我正在使用 ssh2_auth_password() 函数,但我被Warning: ssh2_auth_password() [function.ssh2-auth-password]: Authentication failed for root using password
消息卡住了。
大多数情况下,通过更改PasswordAuthentication yes
sshd_config 文件中的行来解决此问题。这是由返回一个数组的函数完成并确认的ssh2_auth_none()
:“0:公钥,1:密码,2:键盘交互”
scp /srv/www/htdocs/**** root@192.168.168.1:/***/***
当我通过 putty(键入)执行操作并提供密码时,它可以工作。
有任何想法吗 ?