Reputation: 98
I'm want to do reindexing in magento 2. We can reindex with terminal command?
Upvotes: 2
Views: 956
Reputation: 149
Get list of available indexing in Magento 2
magento indexer:info
Check indexing status
magento indexer:status
Even you can check individual indexing status using below command
magento indexer:status catalog_category_product
How to reindex all available indexing in Magento 2
magento indexer:reindex
In case you fill memory limit, try this command
php -dmemory_limit=2G magento indexer:reindex
Upvotes: 0
Reputation: 758
Magento 2: reindexing is not working
fire this command from magento root via terminal
to reindex all :
php bin/magento indexer:reindex
OR
reindex perticuler :
php bin/magento indexer:reindex indexer_name
Where indexer_name Should be from followings:
Upvotes: 4