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!
Great tutorial - everything worked fine. The only thing I would change is your rsync command. It dumps everything into the top directory, which is fine if that’s all you are running on your web server, but many of us run other things as well. I suggest making a subdirectory (piwigo) and putting everything there.
sudo rsync -avP ~/piwigo/ /var/www/html/piwigo
Then go to http://your-server-ip/piwigo for the rest.
Thanks!
In case anyone runs into this:
“Connection to server successful, but the connection to the database was not possible.”
I had to run “use piwigo;” in between the following two steps:
CREATE DATABASE piwigo;
CREATE USER piwigouser@localhost IDENTIFIED BY ‘password’;
As soon as I did that, installation proceed just fine!