SSH to droplet with non root user Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Come Celebrate our 10 Year Anniversary!SSH doesn't ask for password, gives “permission denied” immediatelySSH keys fail for one userChanging copssh default FTP root breaks RSA authenticationAWS Amazon EC2 - password-less SSH login for non-root users using PEM keypairsVMware ESXi 4.1: how to create a new user with root permissionsChrooted user can't login with SSHOne-liner to create UNIX user, add in SSH key, disable root over SSHcan' t access ec2 instance for additional user with sftp or ssh - key refusedCreating a new user with SSH access on ec2Ubuntu 16.04 - Login not working in external SSH Clients

Why aren't road bicycle wheels tiny?

401(k) cost basis

Function on the set of limit countable ordinals

How to not starve gigantic beasts?

Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?

AI positioning circles within an arc at equal distances and heights

Retract an already submitted recommendation letter (written for an undergrad student)

Israeli soda type drink

What is /etc/mtab in Linux?

Where to find documentation for `whois` command options?

PIC mathematical operations weird problem

Trigonometric and Exponential Integration

Book with legacy programming code on a space ship that the main character hacks to escape

How to keep bees out of canned beverages?

How would it unbalance gameplay to rule that Weapon Master allows for picking a fighting style?

Help in K.331 Andante Grazioso

How to know if one is suitable for pursuing academia or Research work their entire life?

What is the best argument for maximum parsimony method in phylogenetic tree construction?

Second order approximation of the loss function (Deep learning book, 7.33)

Is accepting an invalid credit card number a security issue?

What helicopter has the most rotor blades?

How can I wire a 9-position switch so that each position turns on one more LED than the one before?

My admission is revoked after accepting the admission offer

Where did Arya get these scars?



SSH to droplet with non root user



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
Come Celebrate our 10 Year Anniversary!SSH doesn't ask for password, gives “permission denied” immediatelySSH keys fail for one userChanging copssh default FTP root breaks RSA authenticationAWS Amazon EC2 - password-less SSH login for non-root users using PEM keypairsVMware ESXi 4.1: how to create a new user with root permissionsChrooted user can't login with SSHOne-liner to create UNIX user, add in SSH key, disable root over SSHcan' t access ec2 instance for additional user with sftp or ssh - key refusedCreating a new user with SSH access on ec2Ubuntu 16.04 - Login not working in external SSH Clients



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








1















I recently made some new users in my digitalocean droplet, and I would like to access them directly with the command ssh username@ip. However, I get denied with username@ip: Permission denied (publickey). For clarification, the machine has the correct private-key and can access the droplet with ssh root@ip



I did the following to create the new user



root@school:~# adduser username
Adding user `username' ...
Adding new group `username' (1001) ...
Adding new user `username' (1001) with group `username' ...
Creating home directory `/home/username' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully


After these steps, what is further to do to be able to access the droplet with ssh username@ip ?










share|improve this question






















  • if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

    – Dennis Nolte
    Mar 20 at 16:44

















1















I recently made some new users in my digitalocean droplet, and I would like to access them directly with the command ssh username@ip. However, I get denied with username@ip: Permission denied (publickey). For clarification, the machine has the correct private-key and can access the droplet with ssh root@ip



I did the following to create the new user



root@school:~# adduser username
Adding user `username' ...
Adding new group `username' (1001) ...
Adding new user `username' (1001) with group `username' ...
Creating home directory `/home/username' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully


After these steps, what is further to do to be able to access the droplet with ssh username@ip ?










share|improve this question






















  • if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

    – Dennis Nolte
    Mar 20 at 16:44













1












1








1








I recently made some new users in my digitalocean droplet, and I would like to access them directly with the command ssh username@ip. However, I get denied with username@ip: Permission denied (publickey). For clarification, the machine has the correct private-key and can access the droplet with ssh root@ip



I did the following to create the new user



root@school:~# adduser username
Adding user `username' ...
Adding new group `username' (1001) ...
Adding new user `username' (1001) with group `username' ...
Creating home directory `/home/username' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully


After these steps, what is further to do to be able to access the droplet with ssh username@ip ?










share|improve this question














I recently made some new users in my digitalocean droplet, and I would like to access them directly with the command ssh username@ip. However, I get denied with username@ip: Permission denied (publickey). For clarification, the machine has the correct private-key and can access the droplet with ssh root@ip



I did the following to create the new user



root@school:~# adduser username
Adding user `username' ...
Adding new group `username' (1001) ...
Adding new user `username' (1001) with group `username' ...
Creating home directory `/home/username' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully


After these steps, what is further to do to be able to access the droplet with ssh username@ip ?







ssh






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 20 at 13:08









Jonas GrønbekJonas Grønbek

1084




1084












  • if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

    – Dennis Nolte
    Mar 20 at 16:44

















  • if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

    – Dennis Nolte
    Mar 20 at 16:44
















if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

– Dennis Nolte
Mar 20 at 16:44





if available you could use the tool ssh-copy-id username@ip to copy the PUBLIC key to the authorized_key file from the user on the server

– Dennis Nolte
Mar 20 at 16:44










1 Answer
1






active

oldest

votes


















5















"the machine has the correct private-key"




That is the root cause of your misunderstanding. Access is controlled separately for each account, not for the machine as a whole.



For each account you want to access with a particular key you will need to append the associated public key to the file ~/.ssh/authorized_keys in the home directory of that account.



Or in other words: copy /root/.ssh/authorized_keys to /home/username/.ssh/authorized_keys and ensure the correct ownership and permissions on those files/directories.






share|improve this answer


















  • 1





    while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

    – Dennis Nolte
    Mar 20 at 16:44











  • It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

    – JucaPirama
    Mar 21 at 14:21












  • @JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

    – HBruijn
    Mar 21 at 14:30











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f959119%2fssh-to-droplet-with-non-root-user%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









5















"the machine has the correct private-key"




That is the root cause of your misunderstanding. Access is controlled separately for each account, not for the machine as a whole.



For each account you want to access with a particular key you will need to append the associated public key to the file ~/.ssh/authorized_keys in the home directory of that account.



Or in other words: copy /root/.ssh/authorized_keys to /home/username/.ssh/authorized_keys and ensure the correct ownership and permissions on those files/directories.






share|improve this answer


















  • 1





    while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

    – Dennis Nolte
    Mar 20 at 16:44











  • It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

    – JucaPirama
    Mar 21 at 14:21












  • @JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

    – HBruijn
    Mar 21 at 14:30















5















"the machine has the correct private-key"




That is the root cause of your misunderstanding. Access is controlled separately for each account, not for the machine as a whole.



For each account you want to access with a particular key you will need to append the associated public key to the file ~/.ssh/authorized_keys in the home directory of that account.



Or in other words: copy /root/.ssh/authorized_keys to /home/username/.ssh/authorized_keys and ensure the correct ownership and permissions on those files/directories.






share|improve this answer


















  • 1





    while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

    – Dennis Nolte
    Mar 20 at 16:44











  • It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

    – JucaPirama
    Mar 21 at 14:21












  • @JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

    – HBruijn
    Mar 21 at 14:30













5












5








5








"the machine has the correct private-key"




That is the root cause of your misunderstanding. Access is controlled separately for each account, not for the machine as a whole.



For each account you want to access with a particular key you will need to append the associated public key to the file ~/.ssh/authorized_keys in the home directory of that account.



Or in other words: copy /root/.ssh/authorized_keys to /home/username/.ssh/authorized_keys and ensure the correct ownership and permissions on those files/directories.






share|improve this answer














"the machine has the correct private-key"




That is the root cause of your misunderstanding. Access is controlled separately for each account, not for the machine as a whole.



For each account you want to access with a particular key you will need to append the associated public key to the file ~/.ssh/authorized_keys in the home directory of that account.



Or in other words: copy /root/.ssh/authorized_keys to /home/username/.ssh/authorized_keys and ensure the correct ownership and permissions on those files/directories.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 20 at 13:20









HBruijnHBruijn

57k1190150




57k1190150







  • 1





    while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

    – Dennis Nolte
    Mar 20 at 16:44











  • It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

    – JucaPirama
    Mar 21 at 14:21












  • @JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

    – HBruijn
    Mar 21 at 14:30












  • 1





    while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

    – Dennis Nolte
    Mar 20 at 16:44











  • It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

    – JucaPirama
    Mar 21 at 14:21












  • @JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

    – HBruijn
    Mar 21 at 14:30







1




1





while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

– Dennis Nolte
Mar 20 at 16:44





while true please note that you will copy the PUBLIC key, not the private key into the authorized_keys. Additionally copy might just overwrite and give too much access so be catious when doing a copy.

– Dennis Nolte
Mar 20 at 16:44













It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

– JucaPirama
Mar 21 at 14:21






It would be simpler using the ssh-copy-id tool: ssh-copy-id user@remote-host

– JucaPirama
Mar 21 at 14:21














@JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

– HBruijn
Mar 21 at 14:30





@JucaPirama ssh-copy-id user@remote-host leaves you in a bit of a catch-22 when your SSHD configuration does not allow password authentication (which is quite strongly recommended).

– HBruijn
Mar 21 at 14:30

















draft saved

draft discarded
















































Thanks for contributing an answer to Server Fault!


  • 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%2fserverfault.com%2fquestions%2f959119%2fssh-to-droplet-with-non-root-user%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

Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

Masuk log Menu navigasi

อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล