如何打开或关闭Magento 2维护模式?


Answers:


17

为了使您的Magento 2商店处于维护模式,您需要创建一个.maintenance.flag文件并将其上传到varMagento 2安装根目录下的文件夹下。

如果var/.maintenance.flag不存在,Magento将正常运行,并且维护模式关闭。

有关更多信息,请阅读此帖子


27

要启用维护模式,您应该创建var/.maintenance.ip文件。该文件可以包含IP地址列表。如果使用HTTP访问入口点,并且客户端IP地址与该列表中的一项相对应,则维护模式将关闭。

命令用法:

bin/magento maintenance:enable
bin/magento maintenance:disable

要为除192.0.2.10和192.0.2.11之外的所有客户端启用维护模式:

bin/magento maintenance:enable --ip=192.0.2.10 --ip=192.0.2.11

在这里阅读更多


0

你可以enable disable maintenance modeexempt IP-addresses enable disable使用以下命令。

维护模式启用:

php bin / magento维护:启用

维护模式禁用:

php bin / magento维护:禁用

维护模式启用免除IP地址列表

php bin / magento维护:启用--ip = 192.0.3.26 --ip = 192.0.4.27

维护方式删除免除IP地址列表

php bin / magento维护:禁用--ip = none

希望对您有所帮助!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.