The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
136 views

Can't open ssh/authorized_keys of user

I know this may be trivial for some of you. I'm not a linux expert, and I'm trying to play around with git. To do so I wanted to try to add my public SSH key to the ~/.ssh/authorized_keys of my user ...
2
votes
0answers
41 views

Web Site implicit authentication (SSO) when using localhost

This might be a vague question (sorry), but I'd like to be able to authenticate into my web application without a username/password. Ideally it would be something like the SSH "passwordless login" ...
1
vote
1answer
124 views

Check identity of remote-user after password-less ssh-login?

After password-less ssh-login, is there any way in Linux to retrieve the identity of the remote-user that logged in? I would like to take some different actions in the login-scripts, depending on ...
4
votes
2answers
285 views

Gitolite usernames in authorized_keys file

I'll try to explain my scenario the best I can: I'm using gitolite in a debian squeeze server and there are 3 users who can access and work with the repositories: alex@workbox alex@homebox ...
0
votes
1answer
1k views

how to add rsa key to authorized_keys

I created an RSA public key and i want to add that to _authorized_keys_ but there is no such file in my ubuntu 11.10 machine.How can i add the key to authorized keys.Any help will be appreciated
0
votes
1answer
35 views

more than one user edit authorised-keys

I would like to have two users to be able to edit my authorised_keys file. Is this possible? I have tried to add the user to the original user etc/group this didn't work. e.g. user1:xx:user2
0
votes
2answers
955 views

Having trouble with ssh and authorized_keys

I am ssh-ing from server1 to server2. I generated the id_rsa & id_rsa.pub files. If I ssh to mike@server2 it works fine, but ssh to john@server2 does not work without password. Both mike & ...
5
votes
6answers
5k views

Git Remote: Error: fatal: protocol error: bad line length character: Unab

i setip a git server and want now to push initially my repo from the client. I used git push origin master and get this error message: fatal: protocol error: bad line length character: Unab I dont ...
9
votes
2answers
21k views

~/.ssh/authorized_keys not working properly

So, if I add local public ssh key to the authorized_keys file, then I assume ssh localhost date should work fine without asking the passphrase, right? Therefore, I added my public key to the ...
1
vote
1answer
3k views

git push returns “fatal: protocol error: bad line length character”

I set up a remote Git repository on a shared host account I own. To allow another developer to push/pull, I added his public key (id_rsa.pub) to the end of .ssh/authorized_keys on the shared host. ...
3
votes
1answer
587 views

Erlang, SSH and authorized_keys

Playing with the ssh and public_key application in Erlang, I've discovered a nice feature. I was trying to connect to my running Erlang SSH daemon by using a rsa key, but the authentication was ...