Installing Magento 2
The below example demonstrates the from-scratch setup of the Magento 2 application for local development. A similar process can easily be used to configure an environment of any other type. This assumes that RollDev has been previously started via roll svc up
as part of the installation procedure.
Create a new directory on your host machine at the location of your choice and then jump into the new directory to get started:
mkdir -p ~/Sites/exampleproject cd ~/Sites/exampleproject
From the root of your new project directory, run
env-init
to create the.env.roll
file with configuration needed for RollDev and Docker to work with the project.roll env-init exampleproject magento2
The result of this command is a
.env.roll
file in the project root (tip: commit this to your VCS to share the configuration with other team members) having the following contents:ROLL_ENV_NAME=exampleproject ROLL_ENV_TYPE=magento2 ROLL_WEB_ROOT=/ TRAEFIK_DOMAIN=exampleproject.test TRAEFIK_SUBDOMAIN=app ROLL_DB=1 ROLL_ELASTICSEARCH=1 ROLL_ELASTICHQ=0 ROLL_VARNISH=1 ROLL_RABBITMQ=1 ROLL_REDIS=1 ROLL_SYNC_IGNORE= ELASTICSEARCH_VERSION=7.6 DB_DISTRIBUTION=mariadb DB_DISTRIBUTION_VERSION=10.3 NODE_VERSION=12 COMPOSER_VERSION=2.2 PHP_VERSION=7.3 PHP_XDEBUG_3=1 RABBITMQ_VERSION=3.8 REDIS_VERSION=5.0 VARNISH_VERSION=6.0 ROLL_ALLURE=0 ROLL_SELENIUM=0 ROLL_SELENIUM_DEBUG=0 ROLL_BLACKFIRE=0 ROLL_SPLIT_SALES=0 ROLL_SPLIT_CHECKOUT=0 ROLL_TEST_DB=0 ROLL_MAGEPACK=0 BLACKFIRE_CLIENT_ID= BLACKFIRE_CLIENT_TOKEN= BLACKFIRE_SERVER_ID= BLACKFIRE_SERVER_TOKEN=
Sign an SSL certificate for use with the project (the input here should match the value of
TRAEFIK_DOMAIN
in the above.env.roll
example file):roll sign-certificate exampleproject.test
Next you’ll want to start the project environment:
roll env up
Warning
If you encounter an error about
Mounts denied
, follow the instructions in the error message and runroll env up
again.Drop into a shell within the project environment. Commands following this step in the setup procedure will be run from within the
php-fpm
docker container this launches you into:roll shell
Configure global Magento Marketplace credentials
composer global config http-basic.repo.magento.com <username> <password>
Note
To locate your authentication keys for Magento 2 repository,
reference DevDocs <https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html>
_.If you have previously configured global credentials, you may skip this step, as
~/.composer/
is mounted into the container from the host machine in order to share composer cache between projects, and also shares the globalauth.json
from the host machine.Use the Public key as your username and the Private key as your password.
Initialize project source files using composer create-project and then move them into place:
META_PACKAGE=magento/project-community-edition META_VERSION=2.4.x composer create-project --repository-url=https://repo.magento.com/ \ "${META_PACKAGE}" /tmp/exampleproject "${META_VERSION}" rsync -a /tmp/exampleproject/ /var/www/html/ rm -rf /tmp/exampleproject/
Install the application and you should be all set:
Note
If you are using OpenSearch instead of ElasticSearch, use
--elasticsearch-host=opensearch
instead of--elasticsearch-host=elasticsearch
.## Install Application bin/magento setup:install \ --backend-frontname=backend \ --amqp-host=rabbitmq \ --amqp-port=5672 \ --amqp-user=guest \ --amqp-password=guest \ --db-host=db \ --db-name=magento \ --db-user=magento \ --db-password=magento \ --search-engine=elasticsearch7 \ --elasticsearch-host=elasticsearch \ --elasticsearch-port=9200 \ --elasticsearch-index-prefix=magento2 \ --elasticsearch-enable-auth=0 \ --elasticsearch-timeout=15 \ --http-cache-hosts=varnish:80 \ --session-save=redis \ --session-save-redis-host=redis \ --session-save-redis-port=6379 \ --session-save-redis-db=2 \ --session-save-redis-max-concurrency=20 \ --cache-backend=redis \ --cache-backend-redis-server=redis \ --cache-backend-redis-db=0 \ --cache-backend-redis-port=6379 \ --page-cache=redis \ --page-cache-redis-server=redis \ --page-cache-redis-db=1 \ --page-cache-redis-port=6379 ## Configure Application bin/magento config:set --lock-env web/unsecure/base_url \ "https://${TRAEFIK_SUBDOMAIN}.${TRAEFIK_DOMAIN}/" bin/magento config:set --lock-env web/secure/base_url \ "https://${TRAEFIK_SUBDOMAIN}.${TRAEFIK_DOMAIN}/" bin/magento config:set --lock-env web/secure/offloader_header X-Forwarded-Proto bin/magento config:set --lock-env web/secure/use_in_frontend 1 bin/magento config:set --lock-env web/secure/use_in_adminhtml 1 bin/magento config:set --lock-env web/seo/use_rewrites 1 bin/magento config:set --lock-env system/full_page_cache/caching_application 2 bin/magento config:set --lock-env system/full_page_cache/ttl 604800 bin/magento config:set --lock-env catalog/search/enable_eav_indexer 1 bin/magento config:set --lock-env dev/static/sign 0 bin/magento deploy:mode:set -s developer bin/magento cache:disable block_html full_page bin/magento indexer:reindex bin/magento cache:flush
Note
Prior to Magento
2.4.x
it was not required to enter search-engine and elasticsearch configuration during installation and these params tosetup:install
are not supported by Magento2.3.x
. These should be omitted on older versions where not supported and Elasticsearch configured viaconfig:set
instead:bin/magento config:set --lock-env catalog/search/engine elasticsearch7 bin/magento config:set --lock-env catalog/search/elasticsearch7_server_hostname elasticsearch bin/magento config:set --lock-env catalog/search/elasticsearch7_server_port 9200 bin/magento config:set --lock-env catalog/search/elasticsearch7_index_prefix magento2 bin/magento config:set --lock-env catalog/search/elasticsearch7_enable_auth 0 bin/magento config:set --lock-env catalog/search/elasticsearch7_server_timeout 15
Generate an admin user and configure 2FA for OTP
## Generate localadmin user ADMIN_PASS="$(pwgen -n1 16)" ADMIN_USER=admin bin/magento admin:user:create \ --admin-password="${ADMIN_PASS}" \ --admin-user="${ADMIN_USER}" \ --admin-firstname="Local" \ --admin-lastname="Admin" \ --admin-email="${ADMIN_USER}@example.com" printf "u: %s\np: %s\n" "${ADMIN_USER}" "${ADMIN_PASS}" ## Configure 2FA provider OTPAUTH_QRI= TFA_SECRET=$(python -c "import base64; print base64.b32encode('$(pwgen -A1 128)'.encode()).decode().strip('='))") OTPAUTH_URL=$(printf "otpauth://totp/%s%%3Alocaladmin%%40example.com?issuer=%s&secret=%s" \ "${TRAEFIK_SUBDOMAIN}.${TRAEFIK_DOMAIN}" "${TRAEFIK_SUBDOMAIN}.${TRAEFIK_DOMAIN}" "${TFA_SECRET}" ) bin/magento config:set --lock-env twofactorauth/general/force_providers google bin/magento security:tfa:google:set-secret "${ADMIN_USER}" "${TFA_SECRET}" printf "%s\n\n" "${OTPAUTH_URL}" printf "2FA Authenticator Codes:\n%s\n" "$(oathtool -s 30 -w 10 --totp --base32 "${TFA_SECRET}")" segno "${OTPAUTH_URL}" -s 4 -o "pub/media/${ADMIN_USER}-totp-qr.png" QR_URL="https://${TRAEFIK_SUBDOMAIN}.${TRAEFIK_DOMAIN}/media/${ADMIN_USER}-totp-qr.png?t=$(date +%s)" printf "%s\n\n" "$QR_URL" printf "\nScan this qr code or open url below for saving 2fa\n%s\n\n%s\n" "$QR_URL" "$(qrencode -t ANSI256UTF8 \"$OTPAUTH_URL\")"
Note
Use of 2FA is mandatory on Magento
2.4.x
and setup of 2FA should be skipped when installing2.3.x
or earlier. Where 2FA is setup manually via UI upon login rather than using the CLI commands above, the 2FA configuration email may be retrieved fromthe Mailhog service <https://mailhog.roll.test/>
_.Launch the application in your browser:
Note
To completely destroy the exampleproject
environment we just created, run roll env down -v
to tear down the project’s Docker containers, volumes, etc.