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 @artctrldelinfob0d23996f849,
Let’s start from the beginning and create a database and a user. You can use the bellow commands:
mysql
in mysql type in
CREATE DATABASE db_name_here;
CREATE USER 'user-here'@'localhost' IDENTIFIED WITH mysql_native_password BY 'my-strong-password-here';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, INDEX, DROP, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON db_name_here.* TO 'user-here'@'localhost';
In these instructions:
Now you can try and install your WordPress website. When going through the installation, you can add the database name, database user and the database user’s password. It should work without a problem.
Regards, KFSys