Skip to content
Advertisement

Gobblin Git clone error

When trying to download and build Gobblin from git clone. By following, Download and Build Gobblin Locally On your local machine, clone the Gobblin repository:

JavaScript

It gives following error in my Amazon Ec2 instance.

JavaScript

How to avoid that error message?

Advertisement

Answer

The issue is not about communicating with the goblin server, but communicating between your ec2 instance and github.com (through ssh)

When executing an ssh command (or a git clone ssh), ssh will look for a public/private key in your ec2 user account $HOME/.ssh folder.

Make sure you have followed “Generating SSH keys” in order to have the right keys generated in your EC2 account, and to have the public key declared on your GitHub account.

The alternative would be to switch to https:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement