Status: Next Steps:
System account ndb-steve@localhost cannot connect to ndb-steve.
create it using this SQL command (as a user with CREATE rights):CREATE DATABASE `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;