Status:
System account ndb-steve@localhost cannot connect to ndb-steve.

Next Steps:

  1. Check the database settings and make corrections if required.
  2. If those settings are correct, and the database ndb-steve does not exist,
    create it using this SQL command (as a user with CREATE rights):
  3. CREATE DATABASE `ndb-steve`;
  4. If ndb-steve@localhost does not have access to ndb-steve,
    grant it using these SQL commands (as a user with GRANT rights to ndb-steve) -
    Versions of mySQL before 4.0.2 should omit the parameter ", Create Temporary Tables"
    GRANT Select, Insert, Update, Delete, Index, Alter, Create, Drop, References, Create Temporary Tables
          ON `ndb-steve`.*
          TO 'ndb-steve'@'localhost'
          IDENTIFIED BY 'steve123';
    
    FLUSH PRIVILEGES;
  5. Refresh this page to continue system installation;