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.
Thank you Alex, but I find it odd that an automated process is skipping such step. I will try to apply your steps.
Thanks again.
for some reason the user was already created. I ran the other steps, but the install script won’t run after login. Where can I find it to run it manually? Thanks
Hello, @amatosg
It seems like the creation of the ghost MySQL user was skipped and presumably a database was not created:
Setting up "ghost" mysql user [skipped]
What you can do is to manually create the DB user and grant it all privileges on the database as well.
sudo mysqlCREATE USER 'ghost'@'localhost' IDENTIFIED BY 'password'CREATE DATABASE ghostdbGRANT ALL PRIVILEGES ON ghostdb. * TO 'ghost'@'localhost'quitYou can then trigger the install script again by executing it or by simply logging off and then on the next login the install script will be automatically executed.
Hope that helps!
Regards, Alex