How to install public key in host windows server 2012winscp displays “server refused our key” when try to connect to windows server 2012 from windows 10FreeSSHd + WinSCP: “Server refused public-key signature despite accepting key!”How to Use SSH With a Given Public KeyCan I change the filename of my ssh public/private key pair?Install public key via ssh-copy-id for other usersWhat is the public key file that is generated by PuTTY?Where do i need to put my public rsa key on the server to allow passwordless ssh authentication?WinSCP and PuTTY SSH (SFTP) authentication to Windows OpenSSH server won't work using public keysCannot ssh into server: Permission Denied (Public Key)SSH Server refused public-key signature despite accepting keyLogging Into Windows 10 OpenSSH Server With Public Key
What is the most remote airport from the center of the city it supposedly serves?
Have I damaged my car by attempting to reverse with hand/park brake up?
Why is Arya visibly scared in the library in Game of Thrones S8E3?
What is a smasher?
Wrong answer from DSolve when solving a differential equation
I have a unique character that I'm having a problem writing. He's a virus!
Fender hot rod deluxe connected to speaker simulator diagram
exec command in bash loop
Can there be a single technologically advanced nation, in a continent full of non-technologically advanced nations?
How to safely wipe a USB flash drive
How to use dependency injection and avoid temporal coupling?
29ER Road Tire?
What matters more when it comes to book covers? Is it ‘professional quality’ or relevancy?
Has a commercial or military jet bi-plane ever been manufactured?
Would glacier 'trees' be plausible?
Out of scope work duties and resignation
Even some useless stuff would be of use some day
Where can I go to avoid planes overhead?
Why does Professor Hulk wear glasses?
Validation rule Scheduled Apex
Target/total memory is higher than max_server_memory
How can I support myself financially as a 17 year old with a loan?
Missing Piece of Pie - Can you find it?
What is the closest airport to the center of the city it serves?
How to install public key in host windows server 2012
winscp displays “server refused our key” when try to connect to windows server 2012 from windows 10FreeSSHd + WinSCP: “Server refused public-key signature despite accepting key!”How to Use SSH With a Given Public KeyCan I change the filename of my ssh public/private key pair?Install public key via ssh-copy-id for other usersWhat is the public key file that is generated by PuTTY?Where do i need to put my public rsa key on the server to allow passwordless ssh authentication?WinSCP and PuTTY SSH (SFTP) authentication to Windows OpenSSH server won't work using public keysCannot ssh into server: Permission Denied (Public Key)SSH Server refused public-key signature despite accepting keyLogging Into Windows 10 OpenSSH Server With Public Key
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
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? I’m using Windows Server 2012.
ssh windows-server-2012 openssh sftp
add a comment |
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? I’m using Windows Server 2012.
ssh windows-server-2012 openssh sftp
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40
add a comment |
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? I’m using Windows Server 2012.
ssh windows-server-2012 openssh sftp
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? I’m using Windows Server 2012.
ssh windows-server-2012 openssh sftp
ssh windows-server-2012 openssh sftp
edited Apr 11 at 13:16
xChaax
asked Apr 10 at 5:25
xChaaxxChaax
144
144
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40
add a comment |
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40
add a comment |
1 Answer
1
active
oldest
votes
- 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 have700
permissions and theauthorized_keys
needs to have600
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.
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
More generally, the public key must go in whatever file is specified asAuthorizedKeysFile
insshd_config
, which by default is~/.ssh/authorized_keys
– user4556274
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.
– Dave X
Apr 11 at 3:29
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1423613%2fhow-to-install-public-key-in-host-windows-server-2012%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
- 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 have700
permissions and theauthorized_keys
needs to have600
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.
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
More generally, the public key must go in whatever file is specified asAuthorizedKeysFile
insshd_config
, which by default is~/.ssh/authorized_keys
– user4556274
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.
– Dave X
Apr 11 at 3:29
add a comment |
- 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 have700
permissions and theauthorized_keys
needs to have600
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.
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
More generally, the public key must go in whatever file is specified asAuthorizedKeysFile
insshd_config
, which by default is~/.ssh/authorized_keys
– user4556274
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.
– Dave X
Apr 11 at 3:29
add a comment |
- 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 have700
permissions and theauthorized_keys
needs to have600
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.
- 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 have700
permissions and theauthorized_keys
needs to have600
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.
edited Apr 10 at 16:43
answered Apr 10 at 6:19
Martin PrikrylMartin Prikryl
11.5k43482
11.5k43482
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
More generally, the public key must go in whatever file is specified asAuthorizedKeysFile
insshd_config
, which by default is~/.ssh/authorized_keys
– user4556274
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.
– Dave X
Apr 11 at 3:29
add a comment |
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
More generally, the public key must go in whatever file is specified asAuthorizedKeysFile
insshd_config
, which by default is~/.ssh/authorized_keys
– user4556274
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.
– Dave X
Apr 11 at 3:29
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
Apr 10 at 7:15
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
Apr 10 at 7:15
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
See my updated answer.
– Martin Prikryl
Apr 10 at 7:18
5
5
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
Apr 10 at 12:02
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
Apr 10 at 12:02
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the
~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.– Dave X
Apr 11 at 3:29
It's a bit of a sloppy hack, but on new machines I generally run a 'ssh-keygen' to create the
~/.ssh/
directory in the proper place with the proper permissions, and then copy keys into the authorized_keys file.– Dave X
Apr 11 at 3:29
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1423613%2fhow-to-install-public-key-in-host-windows-server-2012%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Comments are not for extended discussion; this conversation has been moved to chat.
– DavidPostill♦
Apr 12 at 19:40