Remove sample data modules or update sample data
Remove sample data modules or update sample data
This topic discusses how to:
-
Remove sample data modules from the Magento installation
composer.json
This option does not remove sample data from the database.
-
Prepare to update sample data (for example, before updating the Magento application).
First steps
-
Log in to the Magento server as, or switch to, a user who has permissions to write to the Magento file system. One way to do this is to switch to the Magento file system owner.
If you use the bash shell, you can also use the following syntax to switch to the Magento file system owner and enter the command at the same time:
su <Magento file system owner> -s /bin/bash -c <command>
If the Magento file system owner does not allow logins you can do the following:
sudo -u <Magento file system owner> <command>
-
To run Magento commands from any directory, add
<your Magento install dir>/bin
to your systemPATH
.Because shells have differing syntax, consult a reference like unix.stackexchange.com.
bash shell example for CentOS:
export PATH=$PATH:/var/www/html/magento2/bin
You can also run the commands in the following ways:
cd <your Magento install dir>/bin
and run them as./magento <command name>
php <your Magento install dir>/bin/magento <command name>
<your Magento install dir>
is a subdirectory of your web server's docroot. Need help locating the docroot? Click here.
Remove sample data modules
Enter the following command:
magento sampledata:remove
Prepare to update sample data
This command enables you to update sample data before you update the Magento application.
To prepare sample data for updating, enter the following command:
magento sampledata:reset
After that, update the Magento application.