Login in as an administrator to SQL CLI interface mysql -u root -p Now create a database where the user will belong to CREATE DATABASE TheDatabase; Now let's go ahead and create a user CREATE USER TheUser; Next will be to give permission to the user for … [Read more...] about How to create a MySQL (SQL) database, username, password, and privileges from the CLI?