Configuring the MySQL database
Create databases for the platform and the application.
E.g.: The following command is used to create the 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:
Note
If you want to access this remotely, then replace localhost with '%'
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:
Note
If you want to give access to all the databases, then replace Database with *. If you want to give access to all the tables of database, then replace Table with *.
E.g.: The following command is used to grant the users, the privileges to all the databases and tables.
"grant all privileges on *.* to 'xxcloudio_qa'@'%"
Last updated