Magento – How to remove Magento2 sample data without uninstall

magento2sample-datauninstall

Is there a way to remove sample data in Magento2 without uninstalling/re-installing Magento?

I want this because I changed settings in my backend that I don't want to be removed.

Best Answer

bin/magento sampledata:remove to completely remove sample data. bin/magento sampledata:reset is used to update sample data before updating Magento application.

+1 for taking backup before doing so. bin/magento setup:backup --db creates a backup for the database.

Ref: http://devdocs.magento.com/guides/v2.0/install-gde/install/cli/install-cli-sample-data-other.html

Related Topic