Magento – How Many Tables Does Magento 2 Have

databasemagento2

Can You Please Tell Me How Many Tables Does Magento 2 Have?
In MY Database Its Only showing 250. I was installing Magento 2. Its been stucked at 73% since last 20min!

Module 'Magento_GroupedProductSampleData':Installing data... 

is there everything okay or not!!!

Best Answer

In default Magento, there are approx. 315 tables, if all default modules have been installed.

If you are unable to install Magento 2 from the browser, you can use the command-line method to install Magento.

The format of the install command follows:

php bin/magento setup:install --<option>=<value> ... --<option>=<value>

For example:

php bin/magento setup:install --base-url=http://127.0.0.1/magento2/ --db-host=localhost --db-name=magento2 --db-user=root --db-password=root --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com --admin-user=admin --admin-password=admin123 --language=en_US --currency=USD --timezone=America/Chicago --use-rewrites=1

Before every option, prepend double hyphens (-).

Please let me know if it worked for you.

Related Topic