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!
what do I do to finish installing. Mine gives me a 404 error saying I do not have permission to be in the drupal folder. I believe I fixed it once by setting the drupal install path correctly but I can’t remember how
A 404 error would indicate that there is an issue with the path that you have setup and no files are being found where they are expected.
Check over your config and copy and paste the directories into your shell and cd to them to make sure that everything is where it’s expected.
You have to be sure that you are setting the correct permissions on the drupal installation:
chmod a+w sites/default/settings.php chmod a+w sites/default
Without the change in permissions, the drupal installer cannot make the necessary changes, which is why you may be getting a 403 error.
I really do not think it is a good idea to leave “chmod a+w sites/default/settings.php” & “chmod a+w sites/default”. Leaving it World-Writable…, bad, really bad!
From dupal.org documentation: NOTE: Do not forget to change permissions back after you have run the installation script. Those permissions should be: chmod 644 settings.php chmod 755 …/default
Hope it helps.
The following helped me.
https://www.centos.org/forums/viewtopic.php?t=6834
It describes what happens when the Drupal directory was moved instead of copied,how the permissions were set on the moved folder and how to restore the permissions.
If you are getting 403 errors then use this command,
restorecon -r /var/www/html
This should restore the correct permission for the drupal folder that was moved
Thank you for this tutorial. I have followed this and the installation was a breeze. However, this tutorial won’t work for installation of Drupal 8 for various reasons. I have written a tutorial specific to Installing Drupal 8.
I cannot thank you enough for this tutorial. Actually, your site and another, I will not name it here, have helped me to setup my vps from scratch to host a fully blown drupal site. If you ever need, I can help you out with any drupal tips. Abhi