It's a magento2-module for the metapackage.
There are several ways to install extension for clients:
-
If you've bought the product at Magento's Marketplace - use Marketplace installation instructions
-
Otherwise, you have two options:
- Install the sources directly from our repository - recommended
- Download archive and use manual installation
cd <magento_root>
composer config repositories.swissup composer https://docs.swissuplabs.com/packages/
composer require swissup/module-search-mysql-legacy --prefer-source --ignore-platform-reqs
bin/magento module:enable Swissup_SearchMysqlLegacy Swissup_Core
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento indexer:reindex catalogsearch_fulltext
Use --disable-modules option
bin/magento setup:install -h
...
--disable-modules[=DISABLE-MODULES] List of comma-separated module names, that must be avoided during installation.
php bin/magento setup:install --disable-modules=Magento_InventoryElasticsearch,Magento_Elasticsearch7,Magento_Elasticsearch6,Magento_Elasticsearch
After installing enable all elastic search module with below command.
php bin/magento module:enable Magento_Elasticsearch Magento_Elasticsearch6 Magento_Elasticsearch7 Magento_InventoryElasticsearch
You can check your current search engine using:
bin/magento config:show catalog/search/engine
You can change your current search engine using:
bin/magento config:set catalog/search/engine 'lmysql'