Magento 1 to Magento 2 Data Migration causing Validation Exception error
I'm currently in the process of trying to migrate my Magento 1 data to Magento 2.
The versions are Magento 1.9.3.9 for the original and Magento 2.2.7 for the new one.
I have cloned the Magento 1 database onto my Magento 2 site location and modified the config file in the following location:
httpdocs / vendor / magento / data-migration-tool / etc /
opensource-to-opensource / 1.9.3.9 / config.xml
and configured it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="../../config.xsd">
<steps mode="settings">
<step title="Settings Step">
<integrity>MigrationStepSettingsIntegrity</integrity>
<data>MigrationStepSettingsData</data>
</step>
<step title="Stores Step">
<integrity>MigrationStepStoresIntegrity</integrity>
<data>MigrationStepStoresData</data>
<volume>MigrationStepStoresVolume</volume>
</step>
</steps>
<steps mode="data">
<step title="Data Integrity Step">
<integrity>MigrationStepDataIntegrityIntegrity</integrity>
</step>
<step title="EAV Step">
<integrity>MigrationStepEavIntegrity</integrity>
<data>MigrationStepEavData</data>
<volume>MigrationStepEavVolume</volume>
</step>
<step title="Customer Attributes Step">
<integrity>MigrationStepCustomerIntegrity</integrity>
<data>MigrationStepCustomerData</data>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<integrity>MigrationStepMapIntegrity</integrity>
<data>MigrationStepMapData</data>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Url Rewrite Step">
<integrity>MigrationStepUrlRewriteVersion191to2000</integrity>
<data>MigrationStepUrlRewriteVersion191to2000</data>
<volume>MigrationStepUrlRewriteVersion191to2000</volume>
</step>
<step title="Log Step">
<integrity>MigrationStepLogIntegrity</integrity>
<data>MigrationStepLogData</data>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="Ratings Step">
<integrity>MigrationStepRatingsIntegrity</integrity>
<data>MigrationStepRatingsData</data>
<volume>MigrationStepRatingsVolume</volume>
</step>
<step title="ConfigurablePrices step">
<integrity>MigrationStepConfigurablePricesIntegrity</integrity>
<data>MigrationStepConfigurablePricesData</data>
<volume>MigrationStepConfigurablePricesVolume</volume>
</step>
<step title="OrderGrids Step">
<integrity>MigrationStepOrderGridsIntegrity</integrity>
<data>MigrationStepOrderGridsData</data>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="Tier Price Step">
<integrity>MigrationStepTierPriceIntegrity</integrity>
<data>MigrationStepTierPriceData</data>
<volume>MigrationStepTierPriceVolume</volume>
</step>
<step title="SalesIncrement Step">
<integrity>MigrationStepSalesIncrementIntegrity</integrity>
<data>MigrationStepSalesIncrementData</data>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
<step title="PostProcessing Step">
<data>MigrationStepPostProcessingData</data>
</step>
</steps>
<steps mode="delta">
<step title="Customer Attributes Step">
<delta>MigrationStepCustomerDelta</delta>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<delta>MigrationStepMapDelta</delta>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Log Step">
<delta>MigrationStepLogDelta</delta>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="OrderGrids Step">
<delta>MigrationStepOrderGridsDelta</delta>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="SalesIncrement Step">
<delta>MigrationStepSalesIncrementDelta</delta>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
</steps>
<source>
<database host="localhost" name="original-database-name" user="username" password="password" />
</source>
<destination>
<database host="localhost" name="new-database-name" user="username" password="password"/>
</destination>
<options>
<map_file>etc/opensource-to-opensource/1.9.3.9/map.xml.dist</map_file>
<eav_map_file>etc/opensource-to-opensource/map-eav.xml.dist</eav_map_file>
<eav_document_groups_file>etc/opensource-to-opensource/eav-document-groups.xml.dist</eav_document_groups_file>
<eav_attribute_groups_file>etc/opensource-to-opensource/eav-attribute-groups.xml.dist</eav_attribute_groups_file>
<log_map_file>etc/opensource-to-opensource/map-log.xml.dist</log_map_file>
<log_document_groups_file>etc/opensource-to-opensource/log-document-groups.xml.dist</log_document_groups_file>
<settings_map_file>etc/opensource-to-opensource/settings.xml.dist</settings_map_file>
<customer_map_file>etc/opensource-to-opensource/map-customer.xml.dist</customer_map_file>
<customer_document_groups_file>etc/opensource-to-opensource/customer-document-groups.xml.dist</customer_document_groups_file>
<customer_attribute_groups_file>etc/opensource-to-opensource/customer-attribute-groups.xml.dist</customer_attribute_groups_file>
<delta_document_groups_file>etc/opensource-to-opensource/deltalog.xml.dist</delta_document_groups_file>
<order_grids_document_groups_file>etc/opensource-to-opensource/order-grids-document-groups.xml.dist</order_grids_document_groups_file>
<map_document_groups>etc/opensource-to-opensource/map-document-groups.xml.dist</map_document_groups>
<class_map>etc/opensource-to-opensource/class-map.xml.dist</class_map>
<tier_price_map_file>etc/opensource-to-opensource/1.9.3.9/map-tier-price.xml.dist</tier_price_map_file>
<stores_map_file>etc/opensource-to-opensource/map-stores.xml.dist</stores_map_file>
<!--
In case bulk_size=0 it will be auto-detected for every document.
-->
<bulk_size>0</bulk_size>
<!--
Set direct_document_copy = 1 for better performance.
NOTE: 'source' and 'destination' databases MUST be placed on the same MySQL instance
and 'destination' user MUST be granted with 'SELECT' permissions on 'source' database
-->
<direct_document_copy>0</direct_document_copy>
<source_prefix />
<dest_prefix />
<auto_resolve_urlrewrite_duplicates>0</auto_resolve_urlrewrite_duplicates>
<log_file>migration.log</log_file>
<progress_bar_format>%percent%% [%bar%] Remaining Time: %remaining%</progress_bar_format>
<upgrade_customer_password_hash>1</upgrade_customer_password_hash>
<edition_migrate>opensource-to-opensource</edition_migrate>
<edition_number>1.9.3.9</edition_number>
<init_statements_source>SET NAMES utf8;</init_statements_source>
<init_statements_destination>SET NAMES utf8;</init_statements_destination>
<crypt_key><![CDATA[1234567abcdef]]></crypt_key>
</options>
</config>
The problem now is when I run the following command:
php bin/magento migrate:settings --reset vendor/magento/data-migration-tool/etc/opensource-to-opensource/1.9.3.9/config.xml
I get the following error
I'm assuming that this is an error with the database names but I'm not sure what as they seem to be named correctly.
If anyone knows why this error is occurring I would appreciate any information.
Thanks
magento2 magento-1.9 error ssh data-migration-tool
add a comment |
I'm currently in the process of trying to migrate my Magento 1 data to Magento 2.
The versions are Magento 1.9.3.9 for the original and Magento 2.2.7 for the new one.
I have cloned the Magento 1 database onto my Magento 2 site location and modified the config file in the following location:
httpdocs / vendor / magento / data-migration-tool / etc /
opensource-to-opensource / 1.9.3.9 / config.xml
and configured it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="../../config.xsd">
<steps mode="settings">
<step title="Settings Step">
<integrity>MigrationStepSettingsIntegrity</integrity>
<data>MigrationStepSettingsData</data>
</step>
<step title="Stores Step">
<integrity>MigrationStepStoresIntegrity</integrity>
<data>MigrationStepStoresData</data>
<volume>MigrationStepStoresVolume</volume>
</step>
</steps>
<steps mode="data">
<step title="Data Integrity Step">
<integrity>MigrationStepDataIntegrityIntegrity</integrity>
</step>
<step title="EAV Step">
<integrity>MigrationStepEavIntegrity</integrity>
<data>MigrationStepEavData</data>
<volume>MigrationStepEavVolume</volume>
</step>
<step title="Customer Attributes Step">
<integrity>MigrationStepCustomerIntegrity</integrity>
<data>MigrationStepCustomerData</data>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<integrity>MigrationStepMapIntegrity</integrity>
<data>MigrationStepMapData</data>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Url Rewrite Step">
<integrity>MigrationStepUrlRewriteVersion191to2000</integrity>
<data>MigrationStepUrlRewriteVersion191to2000</data>
<volume>MigrationStepUrlRewriteVersion191to2000</volume>
</step>
<step title="Log Step">
<integrity>MigrationStepLogIntegrity</integrity>
<data>MigrationStepLogData</data>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="Ratings Step">
<integrity>MigrationStepRatingsIntegrity</integrity>
<data>MigrationStepRatingsData</data>
<volume>MigrationStepRatingsVolume</volume>
</step>
<step title="ConfigurablePrices step">
<integrity>MigrationStepConfigurablePricesIntegrity</integrity>
<data>MigrationStepConfigurablePricesData</data>
<volume>MigrationStepConfigurablePricesVolume</volume>
</step>
<step title="OrderGrids Step">
<integrity>MigrationStepOrderGridsIntegrity</integrity>
<data>MigrationStepOrderGridsData</data>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="Tier Price Step">
<integrity>MigrationStepTierPriceIntegrity</integrity>
<data>MigrationStepTierPriceData</data>
<volume>MigrationStepTierPriceVolume</volume>
</step>
<step title="SalesIncrement Step">
<integrity>MigrationStepSalesIncrementIntegrity</integrity>
<data>MigrationStepSalesIncrementData</data>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
<step title="PostProcessing Step">
<data>MigrationStepPostProcessingData</data>
</step>
</steps>
<steps mode="delta">
<step title="Customer Attributes Step">
<delta>MigrationStepCustomerDelta</delta>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<delta>MigrationStepMapDelta</delta>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Log Step">
<delta>MigrationStepLogDelta</delta>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="OrderGrids Step">
<delta>MigrationStepOrderGridsDelta</delta>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="SalesIncrement Step">
<delta>MigrationStepSalesIncrementDelta</delta>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
</steps>
<source>
<database host="localhost" name="original-database-name" user="username" password="password" />
</source>
<destination>
<database host="localhost" name="new-database-name" user="username" password="password"/>
</destination>
<options>
<map_file>etc/opensource-to-opensource/1.9.3.9/map.xml.dist</map_file>
<eav_map_file>etc/opensource-to-opensource/map-eav.xml.dist</eav_map_file>
<eav_document_groups_file>etc/opensource-to-opensource/eav-document-groups.xml.dist</eav_document_groups_file>
<eav_attribute_groups_file>etc/opensource-to-opensource/eav-attribute-groups.xml.dist</eav_attribute_groups_file>
<log_map_file>etc/opensource-to-opensource/map-log.xml.dist</log_map_file>
<log_document_groups_file>etc/opensource-to-opensource/log-document-groups.xml.dist</log_document_groups_file>
<settings_map_file>etc/opensource-to-opensource/settings.xml.dist</settings_map_file>
<customer_map_file>etc/opensource-to-opensource/map-customer.xml.dist</customer_map_file>
<customer_document_groups_file>etc/opensource-to-opensource/customer-document-groups.xml.dist</customer_document_groups_file>
<customer_attribute_groups_file>etc/opensource-to-opensource/customer-attribute-groups.xml.dist</customer_attribute_groups_file>
<delta_document_groups_file>etc/opensource-to-opensource/deltalog.xml.dist</delta_document_groups_file>
<order_grids_document_groups_file>etc/opensource-to-opensource/order-grids-document-groups.xml.dist</order_grids_document_groups_file>
<map_document_groups>etc/opensource-to-opensource/map-document-groups.xml.dist</map_document_groups>
<class_map>etc/opensource-to-opensource/class-map.xml.dist</class_map>
<tier_price_map_file>etc/opensource-to-opensource/1.9.3.9/map-tier-price.xml.dist</tier_price_map_file>
<stores_map_file>etc/opensource-to-opensource/map-stores.xml.dist</stores_map_file>
<!--
In case bulk_size=0 it will be auto-detected for every document.
-->
<bulk_size>0</bulk_size>
<!--
Set direct_document_copy = 1 for better performance.
NOTE: 'source' and 'destination' databases MUST be placed on the same MySQL instance
and 'destination' user MUST be granted with 'SELECT' permissions on 'source' database
-->
<direct_document_copy>0</direct_document_copy>
<source_prefix />
<dest_prefix />
<auto_resolve_urlrewrite_duplicates>0</auto_resolve_urlrewrite_duplicates>
<log_file>migration.log</log_file>
<progress_bar_format>%percent%% [%bar%] Remaining Time: %remaining%</progress_bar_format>
<upgrade_customer_password_hash>1</upgrade_customer_password_hash>
<edition_migrate>opensource-to-opensource</edition_migrate>
<edition_number>1.9.3.9</edition_number>
<init_statements_source>SET NAMES utf8;</init_statements_source>
<init_statements_destination>SET NAMES utf8;</init_statements_destination>
<crypt_key><![CDATA[1234567abcdef]]></crypt_key>
</options>
</config>
The problem now is when I run the following command:
php bin/magento migrate:settings --reset vendor/magento/data-migration-tool/etc/opensource-to-opensource/1.9.3.9/config.xml
I get the following error
I'm assuming that this is an error with the database names but I'm not sure what as they seem to be named correctly.
If anyone knows why this error is occurring I would appreciate any information.
Thanks
magento2 magento-1.9 error ssh data-migration-tool
add a comment |
I'm currently in the process of trying to migrate my Magento 1 data to Magento 2.
The versions are Magento 1.9.3.9 for the original and Magento 2.2.7 for the new one.
I have cloned the Magento 1 database onto my Magento 2 site location and modified the config file in the following location:
httpdocs / vendor / magento / data-migration-tool / etc /
opensource-to-opensource / 1.9.3.9 / config.xml
and configured it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="../../config.xsd">
<steps mode="settings">
<step title="Settings Step">
<integrity>MigrationStepSettingsIntegrity</integrity>
<data>MigrationStepSettingsData</data>
</step>
<step title="Stores Step">
<integrity>MigrationStepStoresIntegrity</integrity>
<data>MigrationStepStoresData</data>
<volume>MigrationStepStoresVolume</volume>
</step>
</steps>
<steps mode="data">
<step title="Data Integrity Step">
<integrity>MigrationStepDataIntegrityIntegrity</integrity>
</step>
<step title="EAV Step">
<integrity>MigrationStepEavIntegrity</integrity>
<data>MigrationStepEavData</data>
<volume>MigrationStepEavVolume</volume>
</step>
<step title="Customer Attributes Step">
<integrity>MigrationStepCustomerIntegrity</integrity>
<data>MigrationStepCustomerData</data>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<integrity>MigrationStepMapIntegrity</integrity>
<data>MigrationStepMapData</data>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Url Rewrite Step">
<integrity>MigrationStepUrlRewriteVersion191to2000</integrity>
<data>MigrationStepUrlRewriteVersion191to2000</data>
<volume>MigrationStepUrlRewriteVersion191to2000</volume>
</step>
<step title="Log Step">
<integrity>MigrationStepLogIntegrity</integrity>
<data>MigrationStepLogData</data>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="Ratings Step">
<integrity>MigrationStepRatingsIntegrity</integrity>
<data>MigrationStepRatingsData</data>
<volume>MigrationStepRatingsVolume</volume>
</step>
<step title="ConfigurablePrices step">
<integrity>MigrationStepConfigurablePricesIntegrity</integrity>
<data>MigrationStepConfigurablePricesData</data>
<volume>MigrationStepConfigurablePricesVolume</volume>
</step>
<step title="OrderGrids Step">
<integrity>MigrationStepOrderGridsIntegrity</integrity>
<data>MigrationStepOrderGridsData</data>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="Tier Price Step">
<integrity>MigrationStepTierPriceIntegrity</integrity>
<data>MigrationStepTierPriceData</data>
<volume>MigrationStepTierPriceVolume</volume>
</step>
<step title="SalesIncrement Step">
<integrity>MigrationStepSalesIncrementIntegrity</integrity>
<data>MigrationStepSalesIncrementData</data>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
<step title="PostProcessing Step">
<data>MigrationStepPostProcessingData</data>
</step>
</steps>
<steps mode="delta">
<step title="Customer Attributes Step">
<delta>MigrationStepCustomerDelta</delta>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<delta>MigrationStepMapDelta</delta>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Log Step">
<delta>MigrationStepLogDelta</delta>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="OrderGrids Step">
<delta>MigrationStepOrderGridsDelta</delta>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="SalesIncrement Step">
<delta>MigrationStepSalesIncrementDelta</delta>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
</steps>
<source>
<database host="localhost" name="original-database-name" user="username" password="password" />
</source>
<destination>
<database host="localhost" name="new-database-name" user="username" password="password"/>
</destination>
<options>
<map_file>etc/opensource-to-opensource/1.9.3.9/map.xml.dist</map_file>
<eav_map_file>etc/opensource-to-opensource/map-eav.xml.dist</eav_map_file>
<eav_document_groups_file>etc/opensource-to-opensource/eav-document-groups.xml.dist</eav_document_groups_file>
<eav_attribute_groups_file>etc/opensource-to-opensource/eav-attribute-groups.xml.dist</eav_attribute_groups_file>
<log_map_file>etc/opensource-to-opensource/map-log.xml.dist</log_map_file>
<log_document_groups_file>etc/opensource-to-opensource/log-document-groups.xml.dist</log_document_groups_file>
<settings_map_file>etc/opensource-to-opensource/settings.xml.dist</settings_map_file>
<customer_map_file>etc/opensource-to-opensource/map-customer.xml.dist</customer_map_file>
<customer_document_groups_file>etc/opensource-to-opensource/customer-document-groups.xml.dist</customer_document_groups_file>
<customer_attribute_groups_file>etc/opensource-to-opensource/customer-attribute-groups.xml.dist</customer_attribute_groups_file>
<delta_document_groups_file>etc/opensource-to-opensource/deltalog.xml.dist</delta_document_groups_file>
<order_grids_document_groups_file>etc/opensource-to-opensource/order-grids-document-groups.xml.dist</order_grids_document_groups_file>
<map_document_groups>etc/opensource-to-opensource/map-document-groups.xml.dist</map_document_groups>
<class_map>etc/opensource-to-opensource/class-map.xml.dist</class_map>
<tier_price_map_file>etc/opensource-to-opensource/1.9.3.9/map-tier-price.xml.dist</tier_price_map_file>
<stores_map_file>etc/opensource-to-opensource/map-stores.xml.dist</stores_map_file>
<!--
In case bulk_size=0 it will be auto-detected for every document.
-->
<bulk_size>0</bulk_size>
<!--
Set direct_document_copy = 1 for better performance.
NOTE: 'source' and 'destination' databases MUST be placed on the same MySQL instance
and 'destination' user MUST be granted with 'SELECT' permissions on 'source' database
-->
<direct_document_copy>0</direct_document_copy>
<source_prefix />
<dest_prefix />
<auto_resolve_urlrewrite_duplicates>0</auto_resolve_urlrewrite_duplicates>
<log_file>migration.log</log_file>
<progress_bar_format>%percent%% [%bar%] Remaining Time: %remaining%</progress_bar_format>
<upgrade_customer_password_hash>1</upgrade_customer_password_hash>
<edition_migrate>opensource-to-opensource</edition_migrate>
<edition_number>1.9.3.9</edition_number>
<init_statements_source>SET NAMES utf8;</init_statements_source>
<init_statements_destination>SET NAMES utf8;</init_statements_destination>
<crypt_key><![CDATA[1234567abcdef]]></crypt_key>
</options>
</config>
The problem now is when I run the following command:
php bin/magento migrate:settings --reset vendor/magento/data-migration-tool/etc/opensource-to-opensource/1.9.3.9/config.xml
I get the following error
I'm assuming that this is an error with the database names but I'm not sure what as they seem to be named correctly.
If anyone knows why this error is occurring I would appreciate any information.
Thanks
magento2 magento-1.9 error ssh data-migration-tool
I'm currently in the process of trying to migrate my Magento 1 data to Magento 2.
The versions are Magento 1.9.3.9 for the original and Magento 2.2.7 for the new one.
I have cloned the Magento 1 database onto my Magento 2 site location and modified the config file in the following location:
httpdocs / vendor / magento / data-migration-tool / etc /
opensource-to-opensource / 1.9.3.9 / config.xml
and configured it as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="../../config.xsd">
<steps mode="settings">
<step title="Settings Step">
<integrity>MigrationStepSettingsIntegrity</integrity>
<data>MigrationStepSettingsData</data>
</step>
<step title="Stores Step">
<integrity>MigrationStepStoresIntegrity</integrity>
<data>MigrationStepStoresData</data>
<volume>MigrationStepStoresVolume</volume>
</step>
</steps>
<steps mode="data">
<step title="Data Integrity Step">
<integrity>MigrationStepDataIntegrityIntegrity</integrity>
</step>
<step title="EAV Step">
<integrity>MigrationStepEavIntegrity</integrity>
<data>MigrationStepEavData</data>
<volume>MigrationStepEavVolume</volume>
</step>
<step title="Customer Attributes Step">
<integrity>MigrationStepCustomerIntegrity</integrity>
<data>MigrationStepCustomerData</data>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<integrity>MigrationStepMapIntegrity</integrity>
<data>MigrationStepMapData</data>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Url Rewrite Step">
<integrity>MigrationStepUrlRewriteVersion191to2000</integrity>
<data>MigrationStepUrlRewriteVersion191to2000</data>
<volume>MigrationStepUrlRewriteVersion191to2000</volume>
</step>
<step title="Log Step">
<integrity>MigrationStepLogIntegrity</integrity>
<data>MigrationStepLogData</data>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="Ratings Step">
<integrity>MigrationStepRatingsIntegrity</integrity>
<data>MigrationStepRatingsData</data>
<volume>MigrationStepRatingsVolume</volume>
</step>
<step title="ConfigurablePrices step">
<integrity>MigrationStepConfigurablePricesIntegrity</integrity>
<data>MigrationStepConfigurablePricesData</data>
<volume>MigrationStepConfigurablePricesVolume</volume>
</step>
<step title="OrderGrids Step">
<integrity>MigrationStepOrderGridsIntegrity</integrity>
<data>MigrationStepOrderGridsData</data>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="Tier Price Step">
<integrity>MigrationStepTierPriceIntegrity</integrity>
<data>MigrationStepTierPriceData</data>
<volume>MigrationStepTierPriceVolume</volume>
</step>
<step title="SalesIncrement Step">
<integrity>MigrationStepSalesIncrementIntegrity</integrity>
<data>MigrationStepSalesIncrementData</data>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
<step title="PostProcessing Step">
<data>MigrationStepPostProcessingData</data>
</step>
</steps>
<steps mode="delta">
<step title="Customer Attributes Step">
<delta>MigrationStepCustomerDelta</delta>
<volume>MigrationStepCustomerVolume</volume>
</step>
<step title="Map Step">
<delta>MigrationStepMapDelta</delta>
<volume>MigrationStepMapVolume</volume>
</step>
<step title="Log Step">
<delta>MigrationStepLogDelta</delta>
<volume>MigrationStepLogVolume</volume>
</step>
<step title="OrderGrids Step">
<delta>MigrationStepOrderGridsDelta</delta>
<volume>MigrationStepOrderGridsVolume</volume>
</step>
<step title="SalesIncrement Step">
<delta>MigrationStepSalesIncrementDelta</delta>
<volume>MigrationStepSalesIncrementVolume</volume>
</step>
</steps>
<source>
<database host="localhost" name="original-database-name" user="username" password="password" />
</source>
<destination>
<database host="localhost" name="new-database-name" user="username" password="password"/>
</destination>
<options>
<map_file>etc/opensource-to-opensource/1.9.3.9/map.xml.dist</map_file>
<eav_map_file>etc/opensource-to-opensource/map-eav.xml.dist</eav_map_file>
<eav_document_groups_file>etc/opensource-to-opensource/eav-document-groups.xml.dist</eav_document_groups_file>
<eav_attribute_groups_file>etc/opensource-to-opensource/eav-attribute-groups.xml.dist</eav_attribute_groups_file>
<log_map_file>etc/opensource-to-opensource/map-log.xml.dist</log_map_file>
<log_document_groups_file>etc/opensource-to-opensource/log-document-groups.xml.dist</log_document_groups_file>
<settings_map_file>etc/opensource-to-opensource/settings.xml.dist</settings_map_file>
<customer_map_file>etc/opensource-to-opensource/map-customer.xml.dist</customer_map_file>
<customer_document_groups_file>etc/opensource-to-opensource/customer-document-groups.xml.dist</customer_document_groups_file>
<customer_attribute_groups_file>etc/opensource-to-opensource/customer-attribute-groups.xml.dist</customer_attribute_groups_file>
<delta_document_groups_file>etc/opensource-to-opensource/deltalog.xml.dist</delta_document_groups_file>
<order_grids_document_groups_file>etc/opensource-to-opensource/order-grids-document-groups.xml.dist</order_grids_document_groups_file>
<map_document_groups>etc/opensource-to-opensource/map-document-groups.xml.dist</map_document_groups>
<class_map>etc/opensource-to-opensource/class-map.xml.dist</class_map>
<tier_price_map_file>etc/opensource-to-opensource/1.9.3.9/map-tier-price.xml.dist</tier_price_map_file>
<stores_map_file>etc/opensource-to-opensource/map-stores.xml.dist</stores_map_file>
<!--
In case bulk_size=0 it will be auto-detected for every document.
-->
<bulk_size>0</bulk_size>
<!--
Set direct_document_copy = 1 for better performance.
NOTE: 'source' and 'destination' databases MUST be placed on the same MySQL instance
and 'destination' user MUST be granted with 'SELECT' permissions on 'source' database
-->
<direct_document_copy>0</direct_document_copy>
<source_prefix />
<dest_prefix />
<auto_resolve_urlrewrite_duplicates>0</auto_resolve_urlrewrite_duplicates>
<log_file>migration.log</log_file>
<progress_bar_format>%percent%% [%bar%] Remaining Time: %remaining%</progress_bar_format>
<upgrade_customer_password_hash>1</upgrade_customer_password_hash>
<edition_migrate>opensource-to-opensource</edition_migrate>
<edition_number>1.9.3.9</edition_number>
<init_statements_source>SET NAMES utf8;</init_statements_source>
<init_statements_destination>SET NAMES utf8;</init_statements_destination>
<crypt_key><![CDATA[1234567abcdef]]></crypt_key>
</options>
</config>
The problem now is when I run the following command:
php bin/magento migrate:settings --reset vendor/magento/data-migration-tool/etc/opensource-to-opensource/1.9.3.9/config.xml
I get the following error
I'm assuming that this is an error with the database names but I'm not sure what as they seem to be named correctly.
If anyone knows why this error is occurring I would appreciate any information.
Thanks
magento2 magento-1.9 error ssh data-migration-tool
magento2 magento-1.9 error ssh data-migration-tool
asked yesterday
CJNottsCJNotts
759
759
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
After some searching it seems that the error was being caused by an ampersand "&" symbol in the password field. I have amended this now and this particular error does not seem to be happening anymore.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f257106%2fmagento-1-to-magento-2-data-migration-causing-validation-exception-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After some searching it seems that the error was being caused by an ampersand "&" symbol in the password field. I have amended this now and this particular error does not seem to be happening anymore.
add a comment |
After some searching it seems that the error was being caused by an ampersand "&" symbol in the password field. I have amended this now and this particular error does not seem to be happening anymore.
add a comment |
After some searching it seems that the error was being caused by an ampersand "&" symbol in the password field. I have amended this now and this particular error does not seem to be happening anymore.
After some searching it seems that the error was being caused by an ampersand "&" symbol in the password field. I have amended this now and this particular error does not seem to be happening anymore.
answered yesterday
CJNottsCJNotts
759
759
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f257106%2fmagento-1-to-magento-2-data-migration-causing-validation-exception-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown