centos7 忘记root密码
时间: 2023-09-10 09:11:56 浏览: 133
centos7重置密码.docx
如果您忘记了 CentOS 7 上的 root 密码,您可以按照以下步骤重置密码:
1. 在启动时选择 CentOS 7 的引导菜单,并按下 e 键进入编辑模式。
2. 定位到以 "linux16" 开头的行,并在其末尾添加 "rd.break enforcing=0"。
3. 按下 Ctrl + x 启动系统并进入紧急维护模式。
4. 进入单用户模式并挂载文件系统:
```
mount -o remount,rw /sysroot
chroot /sysroot
```
5. 使用以下命令重置 root 密码:
```
passwd root
```
按照提示输入新密码并确认。
6. 更新 SELinux 上下文:
```
touch /.autorelabel
```
7. 退出 chroot 环境并重新启动系统:
```
exit
exit
```
系统将重新启动并使用您设置的新 root 密码登录。请注意,这些步骤可能因不同版本的 CentOS 或特定配置而有所不同。建议在执行此操作之前备份重要数据。
阅读全文