Configure MYSQL server

To configure MySQL service:

  1. Check on the Activation checkbox Enabled.
  2. Click Services / MySQL / Add.
  3. Write a base data name and click Add.

There is the new database:

Create users and add permissions

To add permissions in MySQL service:

CREATE USER '<username>'@'<ip>' IDENTIFIED BY '<password>';
GRANT <privileges> ON <database>.<table> TO '<username>'@'<ip>' IDENTIFIED BY '<password>'; 

types of privileges:

notes: