Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @michaelwoosley:
I have successfully granted permissions to the example_user after following the instructions of step 6 in the tutorial How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu 20.04
The commands I have entered are the following:
Log in to the MySQL root account:
- sudo mysql
Create the example_user account:
- CREATE USER 'example_user'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
Of course, the real password is something else rather than password. 3. Grant the permissions to the user:
```custom_prefix(mysql>)
GRANT ALL ON example_database.* TO 'example_user'@'%';
```
Finally, exit MySQL:
- exit
Make sure you did not miss any commands above. You can try to grant the permissions to the user again by following the above commands but skip the 2nd command.