4

Is MySQL 5.6 mandatory for Magento 2.0 or will it work with MySQL 5.5 itself?
If so, how to skip the mysql detection step?

P.S. My hosting provider supports only MySQL 5.5

asked Nov 20, 2015 at 19:47
3
  • Please let us know if you are able to install Magento using proposed hack. Commented Nov 20, 2015 at 20:01
  • I tried your method and skipped the mysql detection step, but unfortunately can't install it.. Commented Nov 21, 2015 at 5:27
  • It was expected since 5.5 it is not supported. Commented Nov 21, 2015 at 7:48

5 Answers 5

7

Magento 2 use InnoDb Fulltext Indexes and CURRENT_TIMESTAMP default value that not available in Mysql 5.5. So you cannot install it and skip detection step cannot help you.

answered Nov 20, 2015 at 22:02
1

You will need 5.6 for Magento 2. This shouldn't be a problem as most specialist Magento hosts will support shared hosting with MySQL 5.6

answered Nov 24, 2015 at 10:28
0

Magento 2 need mysql 5.6, you should review your hosting services before you buy it. still you can request at support to upgrade the hosting.

You can also use some third party mysql services which can be integrated with your current hosting package. They offer few limited space for free or can buy some mysql space.

answered Mar 30, 2017 at 9:22
0

MySQL 5.6 is now EOL you should hopefully now be using PHP 7.4 with Magento 2 and in our opinion MySQL 8 or MariaDB 10.3

answered Jan 1, 2023 at 12:16
-1

The only supported MySQL version for now is 5.6.

If you want to experiment by suppressing this check, go to

 \Magento\Setup\Controller\DatabaseCheck::indexAction() 

and add at the beginning of the method

return new JsonModel(['success' => true]);
answered Nov 20, 2015 at 19:52
1
  • see @KAndy's reply in regards to suppressing the check Commented Nov 20, 2015 at 22:08

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.