How to install public key in host server





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







3















My user from another server gave his public key to me and asked me to install this public key into my server so he can connect to my server. Did some research and I have to create a directory called .ssh and paste my user public key in a Notepad and save this text file into the .ssh directory. My question is does my research correct if so where and how I create this .ssh directory and the key file, is it in text file format? Do I have to pass any information like my key to the user? Btw, I’m using windows server 2012.










share|improve this question









New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 4





    If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

    – Martin Prikryl
    15 hours ago











  • What OS are you using?

    – Dave X
    8 hours ago











  • ... can do this on their own ... using ssh-copy-id for instance.

    – Bernhard Döbler
    7 hours ago











  • I’m using windows server 2012 @Dave X

    – xChaax
    4 hours ago


















3















My user from another server gave his public key to me and asked me to install this public key into my server so he can connect to my server. Did some research and I have to create a directory called .ssh and paste my user public key in a Notepad and save this text file into the .ssh directory. My question is does my research correct if so where and how I create this .ssh directory and the key file, is it in text file format? Do I have to pass any information like my key to the user? Btw, I’m using windows server 2012.










share|improve this question









New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 4





    If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

    – Martin Prikryl
    15 hours ago











  • What OS are you using?

    – Dave X
    8 hours ago











  • ... can do this on their own ... using ssh-copy-id for instance.

    – Bernhard Döbler
    7 hours ago











  • I’m using windows server 2012 @Dave X

    – xChaax
    4 hours ago














3












3








3


4






My user from another server gave his public key to me and asked me to install this public key into my server so he can connect to my server. Did some research and I have to create a directory called .ssh and paste my user public key in a Notepad and save this text file into the .ssh directory. My question is does my research correct if so where and how I create this .ssh directory and the key file, is it in text file format? Do I have to pass any information like my key to the user? Btw, I’m using windows server 2012.










share|improve this question









New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












My user from another server gave his public key to me and asked me to install this public key into my server so he can connect to my server. Did some research and I have to create a directory called .ssh and paste my user public key in a Notepad and save this text file into the .ssh directory. My question is does my research correct if so where and how I create this .ssh directory and the key file, is it in text file format? Do I have to pass any information like my key to the user? Btw, I’m using windows server 2012.







ssh windows-server-2012 openssh sftp






share|improve this question









New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 3 hours ago







xChaax













New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 15 hours ago









xChaaxxChaax

163




163




New contributor




xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






xChaax is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 4





    If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

    – Martin Prikryl
    15 hours ago











  • What OS are you using?

    – Dave X
    8 hours ago











  • ... can do this on their own ... using ssh-copy-id for instance.

    – Bernhard Döbler
    7 hours ago











  • I’m using windows server 2012 @Dave X

    – xChaax
    4 hours ago














  • 4





    If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

    – Martin Prikryl
    15 hours ago











  • What OS are you using?

    – Dave X
    8 hours ago











  • ... can do this on their own ... using ssh-copy-id for instance.

    – Bernhard Döbler
    7 hours ago











  • I’m using windows server 2012 @Dave X

    – xChaax
    4 hours ago








4




4





If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

– Martin Prikryl
15 hours ago





If the user is already a user on your server (has password authentication working), he/she can setup the public key on his/her own.

– Martin Prikryl
15 hours ago













What OS are you using?

– Dave X
8 hours ago





What OS are you using?

– Dave X
8 hours ago













... can do this on their own ... using ssh-copy-id for instance.

– Bernhard Döbler
7 hours ago





... can do this on their own ... using ssh-copy-id for instance.

– Bernhard Döbler
7 hours ago













I’m using windows server 2012 @Dave X

– xChaax
4 hours ago





I’m using windows server 2012 @Dave X

– xChaax
4 hours ago










1 Answer
1






active

oldest

votes


















11















  • The public key must go into authorized_keys file (not just to some text file) in the .ssh subfolder of user's home directory.


  • The public key entry must have a correct format like:



    ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAir2cIHsAFg8QzLF6Yb... some optional comment


  • The authorized_keys file must use *nix line endings, what Notepad cannot do (so make sure your SFTP/FTP client uses ASCII transfer mode to convert the line endings)


  • The .ssh folder needs to have 700 permissions and the authorized_keys needs to have 600 permissions.


There are zillions of guides on the Internet that cover the above.

For example see my guide to Setting up SSH public key authentication in OpenSSH.





If the user is already a user on your server (has password [or other] authentication working), he/she can setup the public key on his/her own.




  • On *nix machines (or others that have OpenSSH available, what may include Windows), you can use ssh-copy-id script.

  • On Windows machines, you can use (my) WinSCP, with its Install Public Key into Server function.


See also my answer to Setting up public key authentication to Linux server from Windows (ppk private key).





You should provide your user a copy of the server's public host key, so that the user can verify it, when connecting for the first time (it's a separate from the authentication, what the rest of the question is about). Though many users just blindly accept the host key.






share|improve this answer


























  • Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

    – xChaax
    14 hours ago











  • See my updated answer.

    – Martin Prikryl
    14 hours ago






  • 4





    More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

    – user4556274
    9 hours ago












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






xChaax is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1423613%2fhow-to-install-public-key-in-host-server%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









11















  • The public key must go into authorized_keys file (not just to some text file) in the .ssh subfolder of user's home directory.


  • The public key entry must have a correct format like:



    ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAir2cIHsAFg8QzLF6Yb... some optional comment


  • The authorized_keys file must use *nix line endings, what Notepad cannot do (so make sure your SFTP/FTP client uses ASCII transfer mode to convert the line endings)


  • The .ssh folder needs to have 700 permissions and the authorized_keys needs to have 600 permissions.


There are zillions of guides on the Internet that cover the above.

For example see my guide to Setting up SSH public key authentication in OpenSSH.





If the user is already a user on your server (has password [or other] authentication working), he/she can setup the public key on his/her own.




  • On *nix machines (or others that have OpenSSH available, what may include Windows), you can use ssh-copy-id script.

  • On Windows machines, you can use (my) WinSCP, with its Install Public Key into Server function.


See also my answer to Setting up public key authentication to Linux server from Windows (ppk private key).





You should provide your user a copy of the server's public host key, so that the user can verify it, when connecting for the first time (it's a separate from the authentication, what the rest of the question is about). Though many users just blindly accept the host key.






share|improve this answer


























  • Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

    – xChaax
    14 hours ago











  • See my updated answer.

    – Martin Prikryl
    14 hours ago






  • 4





    More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

    – user4556274
    9 hours ago
















11















  • The public key must go into authorized_keys file (not just to some text file) in the .ssh subfolder of user's home directory.


  • The public key entry must have a correct format like:



    ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAir2cIHsAFg8QzLF6Yb... some optional comment


  • The authorized_keys file must use *nix line endings, what Notepad cannot do (so make sure your SFTP/FTP client uses ASCII transfer mode to convert the line endings)


  • The .ssh folder needs to have 700 permissions and the authorized_keys needs to have 600 permissions.


There are zillions of guides on the Internet that cover the above.

For example see my guide to Setting up SSH public key authentication in OpenSSH.





If the user is already a user on your server (has password [or other] authentication working), he/she can setup the public key on his/her own.




  • On *nix machines (or others that have OpenSSH available, what may include Windows), you can use ssh-copy-id script.

  • On Windows machines, you can use (my) WinSCP, with its Install Public Key into Server function.


See also my answer to Setting up public key authentication to Linux server from Windows (ppk private key).





You should provide your user a copy of the server's public host key, so that the user can verify it, when connecting for the first time (it's a separate from the authentication, what the rest of the question is about). Though many users just blindly accept the host key.






share|improve this answer


























  • Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

    – xChaax
    14 hours ago











  • See my updated answer.

    – Martin Prikryl
    14 hours ago






  • 4





    More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

    – user4556274
    9 hours ago














11












11








11








  • The public key must go into authorized_keys file (not just to some text file) in the .ssh subfolder of user's home directory.


  • The public key entry must have a correct format like:



    ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAir2cIHsAFg8QzLF6Yb... some optional comment


  • The authorized_keys file must use *nix line endings, what Notepad cannot do (so make sure your SFTP/FTP client uses ASCII transfer mode to convert the line endings)


  • The .ssh folder needs to have 700 permissions and the authorized_keys needs to have 600 permissions.


There are zillions of guides on the Internet that cover the above.

For example see my guide to Setting up SSH public key authentication in OpenSSH.





If the user is already a user on your server (has password [or other] authentication working), he/she can setup the public key on his/her own.




  • On *nix machines (or others that have OpenSSH available, what may include Windows), you can use ssh-copy-id script.

  • On Windows machines, you can use (my) WinSCP, with its Install Public Key into Server function.


See also my answer to Setting up public key authentication to Linux server from Windows (ppk private key).





You should provide your user a copy of the server's public host key, so that the user can verify it, when connecting for the first time (it's a separate from the authentication, what the rest of the question is about). Though many users just blindly accept the host key.






share|improve this answer
















  • The public key must go into authorized_keys file (not just to some text file) in the .ssh subfolder of user's home directory.


  • The public key entry must have a correct format like:



    ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAir2cIHsAFg8QzLF6Yb... some optional comment


  • The authorized_keys file must use *nix line endings, what Notepad cannot do (so make sure your SFTP/FTP client uses ASCII transfer mode to convert the line endings)


  • The .ssh folder needs to have 700 permissions and the authorized_keys needs to have 600 permissions.


There are zillions of guides on the Internet that cover the above.

For example see my guide to Setting up SSH public key authentication in OpenSSH.





If the user is already a user on your server (has password [or other] authentication working), he/she can setup the public key on his/her own.




  • On *nix machines (or others that have OpenSSH available, what may include Windows), you can use ssh-copy-id script.

  • On Windows machines, you can use (my) WinSCP, with its Install Public Key into Server function.


See also my answer to Setting up public key authentication to Linux server from Windows (ppk private key).





You should provide your user a copy of the server's public host key, so that the user can verify it, when connecting for the first time (it's a separate from the authentication, what the rest of the question is about). Though many users just blindly accept the host key.







share|improve this answer














share|improve this answer



share|improve this answer








edited 4 hours ago

























answered 15 hours ago









Martin PrikrylMartin Prikryl

11.4k43380




11.4k43380













  • Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

    – xChaax
    14 hours ago











  • See my updated answer.

    – Martin Prikryl
    14 hours ago






  • 4





    More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

    – user4556274
    9 hours ago



















  • Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

    – xChaax
    14 hours ago











  • See my updated answer.

    – Martin Prikryl
    14 hours ago






  • 4





    More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

    – user4556274
    9 hours ago

















Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

– xChaax
14 hours ago





Does it matter what directory for .ssh folder ? If does, what directory is home directory? And what is the format for authorized_keys file ?

– xChaax
14 hours ago













See my updated answer.

– Martin Prikryl
14 hours ago





See my updated answer.

– Martin Prikryl
14 hours ago




4




4





More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

– user4556274
9 hours ago





More generally, the public key must go in whatever file is specified as AuthorizedKeysFile in sshd_config, which by default is ~/.ssh/authorized_keys

– user4556274
9 hours ago










xChaax is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















xChaax is a new contributor. Be nice, and check out our Code of Conduct.













xChaax is a new contributor. Be nice, and check out our Code of Conduct.












xChaax is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1423613%2fhow-to-install-public-key-in-host-server%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Callistus I

Tabula Rosettana

How to label and detect the document text images