I have a Laravel project which, following somes operations, generates an archive and needs to place it on a remote server. To carry out my tests, I created a VM running Ubuntu server configured with an SSH connection. When connecting the project to the server to deposit the archive, I want to use dual authentication via an SSH key system and a more traditional user password method. The first phase is carried out correctly, my private key is recognised and it’s during the second part that the problem occurs.
After checking, the user name entered was correct, but the only error message was this one:
“message:proposition #536 SftpAdapter.php:+232 Could not login with username: test, host: 192.168.*.**”
The user account has been configured like this to simplify the test, :
username:test
password:test
The message given above is the only log I have, it comes from the laravel logs.
On the VM side, after checking several log files theoretically exist but I only found one out of the three theoretical ones and it didn’t provide me with the information I was hoping for.
So I tried to make the logs appear on the VM side but I can’t find any parameter corresponding to these famous logs.
What’s more, I’ve gone through the various elements that can cause this problem point by point, but none of them is the cause.
raccoon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.