Multiple private key to be uploaded


 
Thread Tools Search this Thread
Operating Systems Solaris Multiple private key to be uploaded
# 1  
Old 09-21-2010
Multiple private key to be uploaded

I would like to ask if you have a procedure on how to upload multiple private key for multiple users in solaris? I was only able to add one but when I tried to add several key, it fails.

example:
a. user1: user1.ppk
b. user2: user2.ppk

Each with different password on the server. Pls advise
# 2  
Old 09-22-2010
you should not be uploading a users private key. in fact, ideally you should not have access to their private key. the only key that should be uploaded is the public key. Unless you have the users password then you cannot upload their public key when authenticating as them. you could create a script and push they keys to the servers but this would need to run as root or have a privileged way to write to the users directory.
# 3  
Old 09-22-2010
oops sorry..yes i meant was the public key..Do I need to put their key on their corresponding home directory? if yes, no need to generate ssh key on the remote server right?

user1.. upload public key on /home/user1/.ssh

cd /home/user1/.ssh
ls
authorized_keys
vi authorized_keys (to paste the ssh-rsa right? )

Is that it? pls advise
# 4  
Old 09-22-2010
That is correct. no need to generate a key for them.

looks like your using OpenSSH so

1) mkdir /home/user1/.ssh (make sure perms are 700 and owner is that user)
2) cat user1.pub.key >> /home/user1/.ssh/authorized_keys (make sure permissions are 600 to avoid issues)

that should work.
# 5  
Old 09-22-2010
I tried the above but when I login and use my private key it says :server refused our key.

-rw------- 1 root root 227 Sep 22 13:28 authorized_keys
drwx------ 2 lhareigh other 512 Sep 22 13:40 .ssh

can you help what other things should I check inside the remote servr? im using putty.
# 6  
Old 09-22-2010
move the file authorized_keys in .ssh folder
# 7  
Old 09-22-2010
yes it's under .ssh folder .i forgot that the owner of authorized_keys is root..sorry..thank you

another question bt Smilie
a. do I need to do this for all servers? or maybe a script right? if yes, I can just do it on any server right?

b. i wanted users to login using private key. if they login w/o key, system will not allow it.

thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Private and public key encryption

Hi, we have private and public key, encrypt file using public and want to decrypt using private key. can you please advise below commands are correct or other remedy if unix have? encrypt -a arcfour -k publickey.asc -i TESTFILE.csv -o TESTFILE00.csv decrypt -a arcfour -k privatekey.asc... (2 Replies)
Discussion started by: rizwan.shaukat
2 Replies

2. Shell Programming and Scripting

Rsa public private key matching

Hi All, I have a requirement where i need to check if an rsa public key corresponds to a private key and hence return success or failure. Currently i am using the command diff <( ssh-keygen -y -e -f "$PRIVKEY" ) <( ssh-keygen -y -e -f "$PUBLICKEY" ) and its solving my purpose. This is in... (1 Reply)
Discussion started by: mritusmoi
1 Replies

3. OS X (Apple)

Using a private key with SSH in terminal

Before you get the wrong idea, I am not looking for how to generate one. I have a key from a server admin but I can't figure out how to use it in OS X. I have the key, the address and everything I should need but there doesn't seem to be a step by step on how to install the key and use it in... (4 Replies)
Discussion started by: kylebellamy
4 Replies

4. UNIX for Dummies Questions & Answers

Public and Private Key generation for scp

Hi, What tool is used to generate public and private keys for SCP? Do you have an example script that generates these keys, puts them in files and then another example script that references them from SCP? Thanks, (9 Replies)
Discussion started by: Astrocloud
9 Replies

5. Shell Programming and Scripting

Private Key

I have two types of files pubring.pkr secring.skr secring.skr is encrypted and not able to read. How can i read secring.skr in text format after decrypting ? is there any way of decrypting this file? Unix HP - UX Version. (4 Replies)
Discussion started by: airesh
4 Replies

6. Red Hat

ssh private key passwordless authentication

Hello, Need a suggestion to setup private key passwordless authentication. I am not sure this can done or not :wall: here is the sincerio I have two servers, sever1 with a user "user1" and servera with usera here dataflow: usera from servera, will pull/push files to server1 on user1... (2 Replies)
Discussion started by: bobby320
2 Replies

7. UNIX for Dummies Questions & Answers

Secure private key

Hello all, We have unix environment and we would like to use ssh public and private key to move between server using ssh. I do know how to test this and have it up and running on some sandbox...but my question is how would one secure the PRIVATE KEY....we are not using a passphrase...and i know... (1 Reply)
Discussion started by: abdul.irfan2
1 Replies

8. UNIX for Dummies Questions & Answers

Extracting a Private key from a keystore?

Hi everyone! I know you can extract public keys from a keystore using the keytool command. But what is the process to extract a private key from a jks keystore and import into another jks keystore using keytool? Any guidance would be greatly appreciated! I can't seem to find anything, I do... (0 Replies)
Discussion started by: Keepcase
0 Replies

9. Shell Programming and Scripting

Rename .pub and private key

I wish to generate a id_dsa.pub and id_dsa (Public and Private Key) in a common user group. I have checked the .ssh directory and i have already found id_dsa.pub and id_dsa existing. Is that OK if i create both the keys in my home direcotry, rename it to jjj.pub and jjj and move to Common user... (1 Reply)
Discussion started by: vasuarjula
1 Replies

10. Programming

Passphrase protection of private key

Hi all, I have written a Java program to generate RSA public and private keys. I am writing the keys to a file and reading from it when required to encryption or decryption. I want to protect the private key file using a passphrase. Can anyone tell me how to do it? :( Thanks. (2 Replies)
Discussion started by: Treasa
2 Replies
Login or Register to Ask a Question