单机部署
- 进入维护模式:
bin/magento maintenance:enable
- 使用命令更新 commerce 组件:
composer require-commerce <package> <version> --no-update
- 其中的
composer require-commerce
需要先安装 tool:composer require magento/product-enterprise-edition 2.4.4 --no-update
- 其中的
- 更新别的组件:
composer update
- 更新模块:
bin/magento setup:upgrade
- 编译:
bin/magento setup:di:compile
- 部署静态内容:
bin/magento setup:static-content:deploy
- 清理缓存:
bin/magento cache:clean
- 推出维护模式:
bin/magento maintenance:disable