Home » Bitnami » Reset Permission in Bitnami WordPress AWS Cloud

Reset Permission in Bitnami WordPress AWS Cloud

bitnami WordPress has bellow permissions by default

  • Files and directories are owned by user bitnami and group daemon.
  • Directories are configured with permissions 775 by default.
  • Files are configured with permissions 664 by default.
  • The wp-config.php file is configured with permissions 640.

if in case permissions are wrong,  you can run this sudo command to restore them to their initial state

sudo chown -R bitnami:daemon WordPress Folder
sudo find WordPress Folder -type d -exec chmod 775 {} \;
sudo find WordPress Folder -type f -exec chmod 664 {} \;

and you need to put 640 permission for the wp-config file

sudo chmod 640 WordPress Folder/wp-config.php

Reference

https://docs.bitnami.com/google/how-to/troubleshoot-permission-issues/
Duminda Wijerathna

An all round web designer building websites Over 18 years. Interested in achieving a suitable placement in the field of IT in a growth oriented organization which offers diverse job responsibilities in order to utilize and improve my skills, Knowledge and experience.

Leave a Comment

Your email address will not be published. Required fields are marked *