SSH into ezmage

cd /var/www

Insure directory matches the provisioned WEB_ROOT directory, E.g magento, and then install it via composer

 composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <install-directory-name>
 

Set file permissions

cd /var/www/magento
 
find var generated vendor pub/static pub/media app/etc -type f -exec chmod g+w {} +
find var generated vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} +
chmod u+x bin/magento
 

Install Magento

php bin/magento setup:install \
   --admin-firstname=Bob \
   --admin-lastname=T \
   [email protected] \
   --admin-user=admin \
   --admin-password=pword \
   --base-url=http://magento-dev.local/ \
   --db-host=localhost \
   --db-name=magento \
   --db-user=admin \
   --db-password=123 \
   --currency=USD \
   --timezone=America/New_York \
   --language=en_US \
   --use-rewrites=1

Setup redis as cache

bin/magento setup:config:set --cache-backend=redis --cache-backend-redis-server=127.0.0.1 --cache-backend-redis-db=0
bin/magento setup:config:set --page-cache=redis --page-cache-redis-server=127.0.0.1 --page-cache-redis-db=1
bin/magento setup:config:set --session-save=redis --session-save-redis-host=127.0.0.1 --session-save-redis-log-level=3 --session-save-redis-db=2

Disable 2 factor auth

Magento 2.4 has an annyoing 2 factor auth feature with no way to disable it. There is a 3rd party module to disable it.

composer require markshust/magento2-module-disabletwofactorauth
bin/magento module:enable MarkShust_DisableTwoFactorAuth
bin/magento setup:upgrade
bin/magento config:set twofactorauth/general/enable 0