Changed root password on my server, now can't login anymore

SpidrJeru

I decided to change the root password that came preset on a fresh DigitalOcean server (ubuntu 12.04).

I used the first answer to this post: How to change root password in ubuntu?

which is:

sudo -i
passwd

(set my new password on prompt)

sudo passwd -dl root

Now I can't login as root on tty1 on my server, nor can I access my server on Filezilla, etc...

What did I do wrong, and more importantly how can I recover my root login?

Thank you for your help.

Stormvirux

The command

 sudo passwd -dl root

is for disabling root and removing root password. As explained in man passwd:

-d --delete

Delete a user's password (make it empty). This is a quick way to disable a password for an account. It will set the named account passwordless.

-l --lock

Lock the password of the named account. This option disables a password by changing it to a value which matches no possible encrypted value (it adds a ´!´ at the beginning of the password).

So you just need to set root password again.

So, first execute in a terminal

sudo passwd root

or

sudo -i
passwd

you will be prompted for a new Unix password. Write it twice (second time for confirmation).

Then execute

sudo passwd -u root 

to unlock the account. This should return

passwd: password expiry information changed

Now you will be able to access root. But it is not a good idea as you can see here.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Can't reset MySQL (MariaDB) root password

분류에서Dev

I removed compiz and now I can't login to Ubuntu

분류에서Dev

I removed compiz and now I can't login to Ubuntu

분류에서Dev

Ubuntu won't let me enter my root password

분류에서Dev

upgrading angular - now it can't find my controllers

분류에서Dev

can't start mysql service anymore

분류에서Dev

Removed resolvconf can't install anymore

분류에서Dev

Converted disk to GPT, can't boot anymore

분류에서Dev

I mess up installing my Ubuntu and now i can't boot my windows

분류에서Dev

Can't access my xampp server remotely

분류에서Dev

Can't login to my Ubuntu 14.04 after system update

분류에서Dev

Can't login into my macbook pro after changing the account name

분류에서Dev

I can't put my Login Form in the correct place

분류에서Dev

Changed my mind - I WANT IE to remember my password

분류에서Dev

How to recover the root password on ubuntu server

분류에서Dev

How to recover the root password on ubuntu server

분류에서Dev

Mysql-Server installation stuck on root password

분류에서Dev

aborted linux installation and now I can't access my hard-disk

분류에서Dev

Can't SSH in as root

분류에서Dev

Can't Login to using root user in Kali 2.0 Sana after update

분류에서Dev

My button used to work -- but now it doesn't

분류에서Dev

Can't adjust sound for internal sound card anymore

분류에서Dev

After cascading two routers, can't connect to the second anymore

분류에서Dev

Why can't I spoof Facebook with my own DNS server?

분류에서Dev

I can't run my mobile app on worklight development server

분류에서Dev

Can't get my second network card to work on ubuntu server

분류에서Dev

Can I use the access token directly from FB.login on my server?

분류에서Dev

Can't open Gedit as root

분류에서Dev

Copied rails app but now devise is not working anymore

Related 관련 기사

  1. 1

    Can't reset MySQL (MariaDB) root password

  2. 2

    I removed compiz and now I can't login to Ubuntu

  3. 3

    I removed compiz and now I can't login to Ubuntu

  4. 4

    Ubuntu won't let me enter my root password

  5. 5

    upgrading angular - now it can't find my controllers

  6. 6

    can't start mysql service anymore

  7. 7

    Removed resolvconf can't install anymore

  8. 8

    Converted disk to GPT, can't boot anymore

  9. 9

    I mess up installing my Ubuntu and now i can't boot my windows

  10. 10

    Can't access my xampp server remotely

  11. 11

    Can't login to my Ubuntu 14.04 after system update

  12. 12

    Can't login into my macbook pro after changing the account name

  13. 13

    I can't put my Login Form in the correct place

  14. 14

    Changed my mind - I WANT IE to remember my password

  15. 15

    How to recover the root password on ubuntu server

  16. 16

    How to recover the root password on ubuntu server

  17. 17

    Mysql-Server installation stuck on root password

  18. 18

    aborted linux installation and now I can't access my hard-disk

  19. 19

    Can't SSH in as root

  20. 20

    Can't Login to using root user in Kali 2.0 Sana after update

  21. 21

    My button used to work -- but now it doesn't

  22. 22

    Can't adjust sound for internal sound card anymore

  23. 23

    After cascading two routers, can't connect to the second anymore

  24. 24

    Why can't I spoof Facebook with my own DNS server?

  25. 25

    I can't run my mobile app on worklight development server

  26. 26

    Can't get my second network card to work on ubuntu server

  27. 27

    Can I use the access token directly from FB.login on my server?

  28. 28

    Can't open Gedit as root

  29. 29

    Copied rails app but now devise is not working anymore

뜨겁다태그

보관