第一步
- 登录到Magento服务器切换到Magento 2文件系统的所有者用户要有写入的权限.如果你使用bash shell,你也可以使用下面的语法转换到Magento文件系统所有者:
su <Magento 2文件系统所有者> -s /bin/bash -c <command> 如果 Magento 2文件系统所有者 不允许登录可以使用下面的命令 sudo -u <Magento 2文件系统所有者> <command>
您也可以按下列方式运行命令:
cd <Magento 2 安装目录>/bin
并运行它们./magento <command name>
php <Magento 2 安装目录>/bin/magento <command name>
查看索引列表视图
使用下面的命令
magento indexer:info
显示结果如下:
catalog_category_product Category Products
catalog_product_category Product Categories
catalog_product_price Product Price
catalog_product_attribute Product EAV
cataloginventory_stock Stock
catalogrule_rule Catalog Rule Product
catalogrule_product Catalog Product Rule
catalogsearch_fulltext Catalog Search
查看索引状态
这个命令可以查看所有或选定的索引的状态(例如,显示是否需要重建索引)。
命令选项:
magento indexer:status [indexer]
查看索引列表代码:
magento indexer:info
示例代码:
magento indexer:status
代码结果:
Category Products: Reindex required
Product Categories: Reindex required
Product Price: Reindex required
Product EAV: Reindex required
Stock: Reindex required
Catalog Rule Product: Reindex required
Catalog Product Rule: Reindex required
Catalog Search:
没有评论:
发表评论
注意:只有此博客的成员才能发布评论。