I am trying to connect Filezilla with Google Compute Engine.
I have successfully created an ssh file.
I am unable to get the username and password.
This is the screenshot attached.
Update
I am trying to connect Filezilla with Google Compute Engine.
I have successfully created an ssh file.
I am unable to get the username and password.
This is the screenshot attached.
Update
I am going to assume that you followed the recipe in the article found here:
https://www.onepagezen.com/google-cloud-ftp-filezilla-quick-start/
but instead of using putty, you used some other tool to generate the keys. In my test, I used ssh-keygen -t rsa
. This resulted in two files. One I called key
and one I called key.pub
. The file called key
is your private key and possession of it validates that you are who you claim to be.
Next, in my Compute Engine, I defined an SSH key to that compute engine. I pasted in the key.pub
public file. At the conclusion, I was presented with a "name" and the key.
Take note of the name associated with the key.
Now in Filezilla, I pasted in the private key content in the Edit > Settings > Connection > SFTP as described in the original article.
Finally, I was able to access my files from my Filezilla client using sftp://[IP_ADDRESS]
and using the name (kolban in this example) as the userid. No explicit password is needed as we have already told Filezilla about the keys associated with my environment.