SSH Keys are pairs of sequences of randomly generated bytes that provide the basis of SSH public key cryptography and challenge-response authentication. The sequences are typically stored in files and one of them is referred to as the Public key while the other is the Private key.
0
votes
0answers
4 views
How to create a standard Amazon AMI as created by Bitnami?
I'm trying to make a standard Amazon AMI to deploy other server from it, just like Bitnami stacks. I need it to use a particular username tpsingh and should accept key added by user at time of ...
1
vote
1answer
21 views
Coping with gitlab ssh key syncronization bug
I attempted to use a solution posted here: GitLab v5.0 git push problems to fix the ssh keys getting out of sync problem.
However, when I run the rake command as both root & git users on the ...
0
votes
0answers
14 views
JSch: Checking a private key file passphrase before trying to connect
For quite a simple application that mostly depends on ssh connections made via JSch, I wanted to ask for the passphrase at the login screen, try to decrypt the private key and if it is wrong, go back ...
0
votes
2answers
46 views
Switch user with “sudo su - username” using SSH keys
I've been trying to use ssh keys in order to be able to switch from one user to another user on the same Linux machine/server by using sudo su - username.
What i want to do is: I have several ...
0
votes
0answers
27 views
Git permission denied on boot: conq: repository access denied
I have a script (sb_start_main) that calls another script (check_for_updates) that pulls a git repo. When I run either script (sb_start_main or check_for updates) directly it is successful. I added an ...
0
votes
1answer
23 views
Set SSH Identities In Bashrc
I have a .bashrc file to start my ssh agent (taken from here).
Whenever I start my machine I keep having to add my identities to it (using ssh-add ~/.ssh my_private key).
Not knowing bash scripting ...
0
votes
1answer
26 views
Authentication Type error in Paramiko using SFTP
I am using paramiko to establish an SFTP connection with a public/private key exchange. They key is an SSH2 RSA key. When I try to connect I'm receiving the error BadAuthenticationType: Bad ...
0
votes
1answer
25 views
SSH RFC User authentication Message SSH_MSG_USERAUTH_REQUEST
I'm working on some proprietary development on SSH protocol.
I want one clarification on message SSH_MSG_USERAUTH_REQUEST
As per RFC 4252, client can send this below message to server to just verify ...
0
votes
1answer
20 views
Migrate SSH keys from Linux to Mac [closed]
I've been working with Linux for past month, however there are factors that force me to use a Mac (OS X 10.8.3) for my further work. I had my Linux station fully set up, including the SSH keys and in ...
2
votes
0answers
44 views
ssh-add: How to add ssh keys permanently [closed]
I'm using Ubuntu 12.04 and every time I reboot the machine, the key identities saved by ssh-add are gone.
~$ ssh-add -l
The agent has no identities.
I have already added "IdentityFile" in my ...
0
votes
0answers
27 views
Android Tablet - How would I setup ssh keys on the android so I'm not prompted for a password?
I wrote a python script that opens up an ssh connection (and i explicitly state the ip address, username, and password) then run a command and close out the connection.
I need to port the app to an ...
0
votes
0answers
40 views
Trouble deploying a Zend Framework site with Capistrano: SSH Authentication error
I've been following this tutorial trying to deploy my Zend Framework site via Capistrano. I've gotten almost everything to work: My server recognizes the signature from my private key when I SSH in, ...
0
votes
1answer
49 views
Netbeans fails to access GitHub using SSH key
My (newest) Netbeans (NetBeans IDE 7.3 (Build 201302132200)) seems to be failing completely, when I'm trying to access my own GitHub repo using SSH. It works without problems with HTTP URLs.
Since ...
1
vote
1answer
39 views
How to get modulus and pubExp in java?
is it possible to retrieve the modulus and pubExp from a ssh public key such as the one below:
ssh-rsa ...
-1
votes
1answer
51 views
Cannot connect by ssh my mac to my ubuntu server [closed]
I am in trouble with an issue related to public and private key.
I`ve created the pair on my ubuntu server. I´ve copied the id_rsa.pub to my .ssh directory on my MacOS.
When I try ssh ...
0
votes
0answers
59 views
heroku Could not generate key in Windows XP
I am trying to program my first facebook app using heroku, but I can't get started. I am following the instructions heroku provides (https://devcenter.heroku.com/articles/facebook), but I cannot ...
-1
votes
0answers
19 views
SSH Setup, What Location?
When setting up SSH public and private SSH keys on the command-line:
mkdir ~/.ssh
chmod 700 ~/.ssh
ssh-keygen -t rsa
You get prompted for a location to save the keys
"Enter file in which to save ...
0
votes
0answers
22 views
EC2 and Github key
When I want to deploy a new code to EC2 server that is on Github, I get the error message
[IP.compute-1.amazonaws.com :: out] Permission denied (publickey).
** [IP.compute-1.amazonaws.com :: out] ...
0
votes
2answers
28 views
Multiple SSH public keys into a single file
I'm trying to sftp to a host which acts as a load balancer and routes to 3 other systems based on round robin.
Our public key is setup on their systems. Yet, when ever I try to connect, I get ...
0
votes
2answers
33 views
Ruby-SSH: Unable to use any of the Rye::Box::Cmd commands with fingerprint/HostKeyMismatch errors
I'm using the Rye ruby gem to SSH to a server and I'm having the problem where if I try to run any command from there I'm getting the following error:
rbox = Rye::Box.new(server, :user => "user", ...
-2
votes
2answers
45 views
Amazon EC2 - SSH connection [duplicate]
I am trying to connect to EC2 via SSH this way:
ssh -i path_to_pem ec2-user@PublicDNS
But when I do it, I get the message Permission denied (publickey). and the connection is closed.
How should be ...
-1
votes
1answer
64 views
Ubuntu confused ssh keys [closed]
I recently installed Ubuntu 13.04, and i add my ssh key to my github account, like always i did. I didn't had any problem to access to my own reports, i could clone my reports, etc... But today, maybe ...
0
votes
2answers
115 views
Chef running git clone results in host key verification error
I am using Chef, invoked by Capistrano.
There is a directive to clone a repository using git.
git node['rails']['rails_root'] do
repository "git@myrepo.com:/myproj.git"
reference "master"
...
1
vote
1answer
53 views
how to send somebody my (already generated) github public rsa key(send the key or the .pub file?)
I just set up Github and generated my ssh keys. I need to give my public rsa to somebody so they can allow me access to their git repo. Do I send them
a) my entire .pub file,
b) the contents of ...
3
votes
1answer
116 views
What are the requirements for AWS OpsWorks SSH keys?
Added an RSA deploy key to my private github repo, but when I add it to my OpsWorks rails app (paste public key into the "Repository SSH Key" field), and try to save, I get the error message "Please ...
3
votes
1answer
739 views
GitLab v5.0 git push problems
I'm creating this question to help others in their search for documentation regarding two GitLab configuration problems when attempting to push an initialized repo:
1: the git user on your GitLab ...
1
vote
1answer
93 views
WinSCP hostkey wildcard option not working
I'm trying to open a session with any (* wildcard) option as mentioned in the docs page here... But it doesn't work as expected.
"...In exceptional situations, when security is not required, you ...
-1
votes
1answer
68 views
Bash shell scripting for answering the questions of SSH key generation
I want to answer the question of that appear in the bash shell
Ex:
at the script
#!/bin/bash
ssh-keygen -t rsa
#it will appear a question >> Enter file in which to save the key
# ...
0
votes
1answer
59 views
SSH key pass-phrase reset or recovery on local machine? [closed]
After generating a SSH private/public key pair on my local machine, and inputting a passphrase to associate with the key, is there a way to reset or recover the passphrase if it's forgotten or ...
1
vote
0answers
97 views
Lost access to aws ec2 machine
I followed the guide to set up an ssh account for bitbucket on my ec2 machine to pull the code there without having to enter the password.
This is the guide I followed ...
0
votes
2answers
101 views
Capistrano deploy from local machine
Im trying to create a new user to deploy my application from my local machine to my external server.
I've got it working using root but understand it's not secure to use root, therefore I want to ...
1
vote
1answer
238 views
Netbeans 7.3: Error connecting to Git repository with SSH
I am trying to connect to a git repository on a remote server so I can edit the source code in Netbeans 7.3, but when I try to connect to the repository with my ssh private key to clone a repository, ...
0
votes
1answer
89 views
How to install Python module living in a private Git repository in Heroku app?
I wrote a Python package packagename on my local workstation, it looks like this:
packagename/
packagename/setup.py
packagename/modulename.py
I installed packagename from a virtualenv with this ...
1
vote
1answer
84 views
How do I access a private github repo from heroku?
I have a private repo that I'm trying to access when deploying to Heroku. However, Heroku doesn't let me clone the private repo, and gives me the following error (as i would expect):
Host key ...
1
vote
1answer
225 views
Git repository working with SSH
I've a fresh installation of GitLab on my CentOS 6.4 server.
Before that, I was just using Github (in HTTP mode), so I'm very new to all of this.
I've created a key for my user, added it in ...
2
votes
1answer
81 views
Paramiko: Creating a PKey from a public key string
I'm trying to use the SSH protocol at a low level (i.e. I don't want to start a shell or anything, I just want to pass data). Thus, I am using Paramiko's Transport class directly.
I've got the server ...
5
votes
3answers
1k views
SSH Key asks for password
I stuck here now for like 2 Days a week.
I've got a CentOs machine with Gitlab4 and gitolite. Everything worked fine for weeks, but suddenly last weekend something strange happend quite all binaries ...
1
vote
1answer
62 views
Gitblit “Authority” ssh key generation failing
I've installed gitblit on a local server and can't figure out why I can't run the "Authority" key generator.
It's failing with
C:\Program Files (x86)\gitblit>authority INFO Using JCE Unlimited
...
0
votes
1answer
102 views
Script to ssh to remote server and overwrite file
Been toying around with my Raspberry Pi running raspbian.
I'd like to update a webpage with a shell script that requires no input, such as password.
I just tried creating the keys and putting them in ...
0
votes
1answer
185 views
Using git submodules with ssh authentication on Openshift
I created a submodule (a bitbucket repo) on my openshift repo.
My current .gitmodules configuration:
[submodule "php"]
path = php
url = git@bitbucket.org:sgtcarneiro/repo.git
The problem ...
5
votes
1answer
249 views
Can't git clone by adding ssh-key in Node.js
# Write the SSH-KEY to the disk
fs.writeFile "/cgrepos/.ssh/#{repo.id}.pub", repo.public_key, (err) ->
throw err if err
fs.writeFile "/cgrepos/.ssh/#{repo.id}", repo.private_key, (err) ...
1
vote
2answers
27 views
Setting up git after fresh install
I'm planning to install mountain lion on my macbook pro and erase everything in my hard drive too. I currently have git installed with a few repos and my ssh key is connected with remote repos as ...
1
vote
2answers
84 views
gitolite configuration - connect error
I would like to use gitolite for my git folders on server. I searched many blogs with tutorials, but a didnt able to find some examples with correct connection to server.
So, I added a new user ...
1
vote
1answer
93 views
git push trying to push to a Wrong remote origin?
Good day,
I have this extremely weird problem, Someone added me as a member of his organization in github, and asked me for a rsa key, I am a member of that organization now, but now all my other ...
0
votes
0answers
127 views
Converting an RSA Public Key into a RFC 4716 Public Key with Bouncy Castle
I am looking to convert an RSA public key into something that I could use as an SSH public key.
Currently I have Bouncy Castle producing me a public key that looks like this:
-----BEGIN PUBLIC ...
0
votes
0answers
89 views
Best practice for SSH key-based server access [closed]
One of the security processes that we are thinking of changing is the way we allow users to access our servers. We have about 20 web servers where the only access is SSH and at the moment we use ...
2
votes
1answer
68 views
Using SSH Keys on different Mac
I have GIT and my repos setup on a MacBook Air. I'm trying to clone the repo on my iMac. My understanding was that I needed to copy my key over from the /.ssh folder on the MBA to the same folder ...
0
votes
1answer
785 views
Cloning git repo causes error - Host key verification failed. fatal: The remote end hung up unexpectedly
I am using SSH to clone a git repo to my web server, but every time I get this error
$git clone git@github.com:aleccunningham/marjoram.git
Cloning into marjoram...
Host key verification failed.
I ...
1
vote
1answer
42 views
How goes gitHub restrict access only with sshKey?
I'm wandering how does gitHub restrict repo access only by using sshKey.
Everybody is connecting using 'git' user... but the access is restricted only to YOUR repository.
So how is that possible?
...
1
vote
1answer
42 views
Can't work properly with Gitosis
I ask to help with a strange error during my work with Git.
I've installed Gitosis. Here's my config:
cat /root/gitosis-admin/gitosis.conf
[gitosis]
loglevel = DEBUG
[group gitosis-admin]
writable ...