How do I ssh-login into my Mac as root?

25,497

Solution 1

Migrated to an answer:

Per Apple:

  By default, the root user is not enabled [in Mountain Lion].

Which means, unless you have enabled the account and set the password - you probably do not have the root user even enabled. Per the link above:

Enable the root user
   1. Choose Apple menu > System Preferences, and then click Users & Groups.
   2. Click the lock icon to unlock it, and then type an administrator name and password.
   3. In the Network Account Server section, click Join or Edit.
   4. Click Open Directory Utility.
   5. Click the lock icon to unlock it, and then enter your administrator name and password.
   6. Choose Edit > Enable Root User, and then enter a root user password in the Password and Verify fields.
 Be sure to specify a secure password.

Then you can test that it works via SSH and WinSCP.

Shorter Unix way

Open Terminal and run

sudo passwd

enter your sudoing password if needed, and then provide the password for the root account when asked.

And don't forget to add "Administrators" to the list of users allowed for remote login.

Solution 2

Ok, so what I need was to enable/create the root account. The process seems to be the same as on Linux, first run

sudo passwd

in Terminal, enter your sudoing password if needed, and then provide the password for the root account when asked.

And don't forget to add "Administrators" to the list of users allowed for remote login.

Thanks to nerdwaller for the hint.

Share:
25,497
Desmond Hume
Author by

Desmond Hume

Updated on September 18, 2022

Comments

  • Desmond Hume
    Desmond Hume over 1 year

    For some reason I can't login as root into my Mountain Lion 10.8.2.

    I've already edited /private/etc/sshd_config file by removing the comment from

    PermitRootLogin yes
    

    and restarted Mac. Still it says "Access denied" when I try to ssh into my Mac.

    I also tried going to System Preferences > Sharing > Remote Login and selecting "All users" for "Allow access for" options, but I still get "Access denied". Remote Login is already turned on.

    The password I use is a valid sudoing password and is the same one that was used for editing /private/etc/sshd_config file.

    The program from which I'm trying to connect to my Mac is WinSCP, which is basically a file manager, so I can't do any sudoing with it and thus really need to be root in order to have full control over my Mac's files.

    • Desmond Hume
      Desmond Hume about 11 years
      @nerdwaller It's the very same password I entered when clean-installing Mountain Lion. It's the root password without a question.
    • Desmond Hume
      Desmond Hume about 11 years
      @nerdwaller And how do I enable root user?
    • nerdwaller
      nerdwaller about 11 years
      You don't set-up a root password during install on Mountain Lion... And I gave you a link above. "By default, the root user is not enabled." Per the link I provided.
    • ott--
      ott-- about 11 years
      Can you paste the outputof ‘ssh -v root@yourmac‘?
    • Desmond Hume
      Desmond Hume about 11 years
      @nerdwaller One of the valid reasons to use WinSCP as root would be remotely editing files and modifying contents of directories that you don't have permission on when ssh-ed as a regular user, all with a pretty convenient GUI.
  • Desmond Hume
    Desmond Hume about 11 years
    Thanks, I figured it out too, with a shorter process for root account creation though.
  • Desmond Hume
    Desmond Hume about 11 years
    And now you can use WinSCP the way you want!
  • nerdwaller
    nerdwaller about 11 years
    @DesmondHume Didn't know your experience level, and Apple people often like the menu way (in my experience). Glad you got it working.
  • nerdwaller
    nerdwaller about 11 years
    @DesmondHume - Great idea. I +1'ed yours as well.