Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

After that, you will see the MySQL command prompt.

54. In the MySQL prompt, create the registry database using the following command.

Code Block
create database regdb;

65. Give authorization of the registry database to the user "regadmin."

Code Block
GRANT ALL ON regdb.* TO regadmin@localhost IDENTIFIED BY "regadmin"

76. Log out from the MySQL prompt by typing the "quit" command.

...