Question

enter image description here

Hi, can anyone help to identify how to fix this? I am installing from a Magento 2.4 Script onto ubuntu 20.04.

Thanks

Was it helpful?

Solution

Its possible you forgot some flag.

Try with this command:

bin/magento setup:install --backend-frontname="admin" \
--db-host="localhost" \
--db-name="database_name" \
--db-user="username" \
--db-password="password" \
--language="en_US" \
--currency="GBP" \
--timezone="Europe/London" \
--use-rewrites=1 \
--use-secure=0 \
--base-url="http://www.magentourlbase.com" \
--base-url-secure="https://www.magentourlbase.com" \
--admin-user=adminuser \
--admin-password=123123q \
--admin-email=admin@magentourlbase.com \
--admin-firstname=admin \
--admin-lastname=user \
--cleanup-database
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top