diff options
author | https://www.google.com/accounts/o8/id?id=AItOawlXt6nnNs-3uw61EGYtxr_AVhJqXybwLR8 <Bruno@web> | 2015-03-21 20:54:29 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2015-03-21 20:54:29 +0000 |
commit | 6991fa586c1458627351bc51f8f2045dc7b0a77c (patch) | |
tree | a958d1ccb7f2304223d89f5d161087122922aab6 | |
parent | a421a38eb0d2545660cba0df8d6a8f898740f10f (diff) |
Added a comment: Problem with the SSH Caching feature ?
-rw-r--r-- | doc/bugs/git_annex_sync_thinks_remote__39__s_name_is_a_command/comment_5_aed072d24e216b2ab0d22faa53b4de5b._comment | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/bugs/git_annex_sync_thinks_remote__39__s_name_is_a_command/comment_5_aed072d24e216b2ab0d22faa53b4de5b._comment b/doc/bugs/git_annex_sync_thinks_remote__39__s_name_is_a_command/comment_5_aed072d24e216b2ab0d22faa53b4de5b._comment new file mode 100644 index 000000000..cd8aa02b8 --- /dev/null +++ b/doc/bugs/git_annex_sync_thinks_remote__39__s_name_is_a_command/comment_5_aed072d24e216b2ab0d22faa53b4de5b._comment @@ -0,0 +1,48 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawlXt6nnNs-3uw61EGYtxr_AVhJqXybwLR8" + nickname="Bruno" + subject="Problem with the SSH Caching feature ?" + date="2015-03-21T20:54:29Z" + content=""" +Hi, + +I have a similar problem, + + $ git annex sync --content + commit ok + pull origin + root@192.168.253.53: error while loading shared libraries: root@192.168.253.53: cannot open shared object file: No such file or directory + fatal: Could not read from remote repository. + + Please make sure you have the correct access rights + and the repository exists. + failed + +I have also verified the files paths, it seem ok, And effectively, it appear a SSH Caching feature that cause this error. + +For resolve it, i have used the **@joey** solution. + +I disabled the SSH Caching feature + + git config annex.sshcaching false + +Here the result after disable caching feature + + $ git annex sync --content + commit (recording state in git...) + ok + pull origin + ok + pull origin + ok + push origin + Counting objects: 5, done. + Delta compression using up to 4 threads. + Compressing objects: 100% (4/4), done. + Writing objects: 100% (5/5), 489 bytes | 0 bytes/s, done. + Total 5 (delta 1), reused 0 (delta 0) + To root@192.168.253.53:/data/samba/backup/newdocshare + 008ee7c..23e8372 git-annex -> synced/git-annex + ok + +"""]] |