重置 root 密码 ovh

重置 root 密码 ovh

我购买了 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/挂载

答案1

从看你的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

然后你可以重新启动它。

相关内容