Configuring the MySQL database
Create databases for the platform and the application.
E.g.: The following command is used to create the database xxcloudio:
create database xxcloudio;
2. Create a user to access the databases.
E.g.: The following command is used to create a user for the database xxcloudio:
create user xxcloudio@localhost IDENTIFIED BY PasswordForUser;
3. Grant the user privileges required to work with the databases.
E.g.: The following command is used to grant the user privileges for the database xxcloudio:
grant all privileges on xxcloudio.* to xxcloudio_qa@localhost
Last updated
Was this helpful?