How do I setup ftp/sftp on google cloud?

-1

1

I want to give a user remote access to files in gcs via sftp. I am thinking of doing this by granting access to a folder hosted on a google compute engine vm instance (basically want to setup an ftp server on google cloud).

I followed the steps below:

  1. Create vm instance (centos7 micro)
  2. Add username/password in terminal of vm instance
  3. edit sshd_config file to uncomment "PasswordAuthentication yes"
  4. In filezilla connect to sftp:$username@$externalip with username and password from step 2. No ssh private key supplied

When I do this I receive the following connection error using filezilla :

No supported authentication methods available (server sent: publickey,gssapi-keyex,gssapi-with-mic)

user11020868

Posted 2019-09-15T02:32:19.580

Reputation: 29

It looks like the server is running a SSH server, not a SFTP server. – jww – 2019-09-15T02:43:24.983

@jww OpenSSH (which uses sshd_config mentioned in the question) is both SSH and SFTP server. While it's possible to misconfigure the OpenSSH in way that SSH works, but SFTP does not, it's not this case. The connection fails in an authentication phase already, a way before an SFTP channel is started. – Martin Prikryl – 2019-09-15T13:27:04.520

@user11020868 What is "correct"? You have set up an SFTP server. You are connecting with SFTP protocol in FileZilla. Your question is not about FTP. If wanted to setup FTP, you are on a wrong track. – Martin Prikryl – 2019-09-15T13:27:53.697

Apologies - yes in this case it is sftp. Do I need to supply a key to filezillla or is username / password enough ? – user11020868 – 2019-09-15T13:41:00.093

SFTP works even with password. Make sure you have restarted sshd, as already suggested by @Gary. – Martin Prikryl – 2019-09-16T05:52:57.123

Answers

-1

To, connect via SFTP -- First, you have to generate SSH keys(public keys and private keys) on your local computer, after that, you have to add the public key to Google Cloud metadata and configure Filezilla with the private key. Here is a details blog of siteyaar which I find helpful.

https://www.siteyaar.com/google-cloud-ftp-and-sftp-setup/

Unlike SFTP, Google Cloud VM(S) does not come with a pre-configured FTP server. To connect via FTP you have to set up an Ftp server using vsftpd. Here another blog of siteyaar which also helps you in this regard.

https://www.siteyaar.com/setup-ftp-server-on-google-cloud/

Akash Patra

Posted 2019-09-15T02:32:19.580

Reputation: 9

Please note if you want to promote or recommend your own product/blog, there are some guidelines in place for doing so. Following them will help you avoid giving the impression that you're spamming. Could you please [edit] to explicitly state your affiliation? Thanks. (If you're not actually affiliated, it may be worth mentioning that as well.)

– DavidPostill – 2019-11-29T19:39:11.113