Password

重置root密碼ovh

  • May 10, 2017

我已經購買了VPS@ovh.com,我更改了我的root密碼,現在我不記得了,我已經按照他們論壇上的步驟進行操作,但似乎沒有任何效果,它只是在救援中更改了密碼模式。

這是我嘗試過的一些事情

mount -o rw /dev/sda1 /mnt
chroot /mnt
passwd
reboot server to normal mode

&

mount /dev/sda1 /mnt
chroot /mnt
nano /etc/shadow //changed the password with another one generated with openssl
reboot server

這是/proc/mounts恢復內部: /proc/mounts

通過查看您的cat /proc/mounts輸出,事實證明您的恢復系統已打開/dev/sda1,因此您正在更改恢復系統的密碼(可能會被忽略,並且一旦您重新啟動,圖像就會被丟棄)。您的系統已經安裝在/mnt/sdb1

確保完全解除安裝文件系統也是一個好習慣,因為我不能保證“重新啟動我的 VPS”按鈕會這樣做。

chroot /mnt/sdb1
passwd
exit              # get out of chroot
umount /mnt/sdb1  # unmount the filesystem
sync              # just for paranoia

然後你可以重新啟動它。

引用自:https://unix.stackexchange.com/questions/364216