重庆思庄Oracle、Redhat认证学习论坛
标题: redhat7是如何修改root密码(学习) [打印本页]
作者: 橡皮草帽 时间: 2019-11-17 19:01
标题: redhat7是如何修改root密码(学习)
在RHEL7中,进入rescue.target和emergency.target 目标都需要root密码才能登入。
On Red Hat Enterprise Linux 7, it is possible to have the scripts that run from the initramfs pause
at certain points, provide a root shell, and then continue when that shell exits. While this is mostly
meant for debugging, it can also be used to recover a lost root password:
在RHEL7中重置root密码,需要进入到一个“特殊”的模式下来进行重置root的密码。
重置root密码的方法:
rd.break
在grub菜单中按e进入系统的启动条目编辑菜单,找到linux16 在最后追加一个参数 rd.break
按"ctrl+x"引导进入系统
linux16 ..... console=tty0 rd.break
# mount -o remount,rw /sysroot
# chroot /sysroot
# passwd root <---密码重置为redhat
# touch /.autorelabel
# exit
# exit
Selinux relabel过程