Information
Setting the boot loader password will require that anyone rebooting the system must enter a password before being able to set command line boot parameters.
Requiring a boot password upon execution of the boot loader will prevent an unauthorized user from entering boot parameters or changing the boot partition. This prevents users from weakening security (e.g. turning off auditing at boot time).
Solution
Create an encrypted password with grub2-mkpasswd-pbkdf2 :
# grub2-mkpasswd-pbkdf2
Enter password:<password>
Reenter password:<password>
PBKDF2 hash of your password is <encrypted-password>
Add the following into /etc/grub.d/40_custom
set superusers="<username>"
password_pbkdf2 <username> <encrypted-password>
Run the following command to import the changes into the main configuration file:
# grub2-mkconfig -o /boot/grub2/grub.cfg
Impact:
If password protection is enabled, only the designated superuser can edit a GRUB 2 menu item by pressing e or access the GRUB 2 command line by pressing c
If GRUB 2 is set up to boot automatically to a password-protected menu entry the user has no option to back out of the password prompt to select another menu entry. Holding the SHIFT key will not display the menu in this case. The user must enter the correct username and password. If unable, the configuration files will have to be edited via the LiveCD or other means to fix the problem