Connect to the MySQL database as a user as root.
Run the following statements against the database:
create user username@hostname identified by 'password'; create database database-name; grant all on database-name.* to username@hostname; |
In the default Java DB database, the database schema name, username, and password are all IEPSEDB. You do not need to use these values.