MySQL Deployment Code Explained 2

Mondo Technology Updated on 2024-01-28

reloading the privilege tables will ensure that all changes

made so far will take effect immediately.

reload privilege tables now? (press y|y for yes, any other key for no) :

The above is a command for the security configuration of the MySQL server, and it performs the following steps:

reloading the privilege tables will ensure that all changes made so far will take effect immediately.

This line is the output of the command, indicating that reloading the permission table will ensure that all changes made so far take effect immediately. When you create, modify, or delete a user or permission, you need to reload the permission table and let the MySQL server update the in-memory cache, otherwise the permissions may be inconsistent or cannot take effect.

reload privilege tables now? (press y|y for yes, any other key for no) :

This line is the output of the command asking if you want to reload the permissions table now, if you want to reload, you can enter y or y for yes, and if you want to reload later, you can enter any other key for no.

The above is what I explain to you about the meaning of each line you enter, if it helps, like, follow, comment

Related Pages