git - Downloading C++ Driver for MongoDB -


i feel absolute idiot asking, i'm not able download c++ driver mongodb. i'm running 32-bit fedora 21 box, , it's mongodb instance running. i've been following instructions on page.

and tells me perform following cmd clone repository:

[user@host ~]$ git clone git@github.com:mongodb/mongo-cxx-driver.git cloning 'mongo-cxx-driver'... permission denied (publickey). fatal: not read remote repository.  please make sure have correct access rights , repository exists. 

as can see, looks remote host expecting form of public key authentication. documentation doesn't reference other steps need taken (except installing necessary software boost, python, git, , scons i've done) in order clone repo local machine. else running same problem? ideas of do?

thanks always!

use command instead:

git clone https://github.com/mongodb/mongo-cxx-driver.git 

the reason initial command not working because attempting pull using secure connection method. work if have ssh keypair locally linked github account.

the difference new command is looking @ public url can authenticate if necessary (not in case).

more information


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -