centos7/rhel7重置root密码
重置root密码是rhcsa 考试中的一个道隐藏题目。目前redhat 在主推的版本是rhel7 ,与我们经常用的开源版本centos7相同 。centos7/rhel7进入单用户方式和重置密码方式发生了较大变化,GRUB由变成了GRUB2,b引导变成了ctrl+x引导。确解方法有rd.break和init两种。
一、rd.break重置密码
1、启动的时候,在启动界面,相应启动项,内核名称上按“e”;
2、进入后,找到linux16开头的地方,按“end”键到最后,输入rd.break,按ctrl+x进入。或者打到linux16 中ro的位置,执行ctrl +k 删除到行尾,再增加rd.break;
3、进去后输入命令mount,发现根为/sysroot/,并且不能写,只有ro=readonly权限;
4、mount -o remount,rw /sysroot/,重新挂载,之后mount,发现有了r,w权限;
5、chroot /sysroot/ 改变根;
(1)echo redhat|passwd –stdin root 修改root密码为redhat,或者输入passwd,交互修改;
(2)还有就是先cp一份,然后修改/etc/shadow文件
6、touch /.autorelabel 这句是为了selinux生效,重新扫描磁盘标签,autorelabel 是一个隐藏文件,前面有点,而且一定不能写错,不然reboot时会卡住。
7、ctrl+d 退出
8、然后reboot
至此,密码修改完成
二、init重置密码
1. 启动系统,并在GRUB2启动屏显时,按下e键进入编辑模式。
2. 在linux16/linux/linuxefi所在参数行尾添加以下内容:init=/bin/sh
3. 按Ctrl+x启动到shell。
4. 挂载文件系统为可写模式:mount –o remount,rw /
5. 运行passwd,并按提示修改root密码。
6. 如何之前系统启用了selinux,必须运行以下命令,否则将无法正常启动系统:touch /.autorelabel
7. 运行命令exec /sbin/init来正常启动,或者用命令exec /sbin/reboot重启
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/rhel7-getback-root-password/4750.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.