Porque ao executar o comando abaixo:
php bin/magento migrate:settings vendor/magento/data-migration-tool/etc/opensource-to-opensource/1.9.3.7/config.xml
Esta apresentando este erro There are no commands defined in the "migrate" namespace.
Estou tentando migrar dados da vers. 1.9.3.7 para 2.3.2
Desde já agradeço pela ajuda!
Hello ,
As per your error on terminal, you are using the official migration tool.
https://github.com/magento/data-migration-tool
There are no commands defined in the "migrate" namespace.
OR
There are no commands defined in the "settings" namespace.
Probably, the tool is installed incorrectly in magento 2 code base.
so please follow the following step for installation of data-migarion-tool
composer config repositories.magento composer https://repo.magento.com
composer require magento/data-migration-tool:<version>
where <version> must match the version of the Magento 2 codebase.
e.g. for version 2.3.2, enter:
composer require magento/data-migration-tool:2.3.2
You can follow the instructions from official docs