What should I do if I forget my centos login password?

下次还敢
Release: 2024-04-02 21:33:20
Original
1418 people have browsed it

忘记 CentOS 服务器登录密码的重置步骤如下:启动救援模式。挂载根文件系统。使用 chpasswd 实用程序重置 root 密码。卸载根文件系统。退出救援模式并重新启动服务器以使用新密码登录。

What should I do if I forget my centos login password?

如何重置 CentOS 登录密码

如果忘记了 CentOS 服务器的登录密码,可以采用以下步骤进行重置:

步骤 1:启动到救援模式

  • 重新启动服务器。
  • 在引导菜单中,选择 "救援模式"。
  • 选择 "用 shell 继续"。

步骤 2:挂载根文件系统

  • 以下命令挂载根文件系统:

    <code>mount -o remount,rw /sysroot</code>
    Copy after login

步骤 3:重置密码

  • 以下命令使用 chpasswd 实用程序重置 root 用户的密码:

    <code>chpasswd root</code>
    Copy after login
  • 输入新密码并确认。

步骤 4:卸载根文件系统

  • 以下命令卸载根文件系统:

    <code>umount /sysroot</code>
    Copy after login

步骤 5:退出救援模式

  • 以下命令退出救援模式:

    <code>reboot</code>
    Copy after login

服务器将重新启动,您现在可以使用新密码登录。

The above is the detailed content of What should I do if I forget my centos login password?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template