📜  如何在 magento 2 中禁用维护模式 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:52:26.464000             🧑  作者: Mango

如何在 Magento 2 中禁用维护模式 - Shell/Bash

若您正在使用 Magento 2,并且在升级或者进行系统维护时开启了维护模式,那么您可能需要知道如何禁用这一功能。下面是使用 Shell/Bash 命令行工具禁用 Magento 2 维护模式的步骤。

步骤 1 - 连接到您的 Magento 2 实例

在您的终端中输入以下命令,连接到您的 Magento 2 实例:

ssh username@your-magento2-instance

其中 username 为您的登录用户名,your-magento2-instance 为您的 Magento 2 实例 IP 或域名地址。

步骤 2 - 进入 Magento 2 根目录

在成功连接到您的 Magento 2 实例后,进入 Magento 2 根目录。输入以下命令:

cd /path/to/magento2/root

其中 /path/to/magento2/root 为您 Magento 2 根目录的路径。

步骤 3 - 禁用维护模式

使用以下命令禁用 Magento 2 维护模式:

php bin/magento maintenance:disable
步骤 4 - 验证禁用状态

输入以下命令,验证 Magento 2 是否已经成功禁用了维护模式:

php bin/magento maintenance:status

如果输出结果为 Maintenance mode is disabled. 则意味着您已经成功禁用了 Magento 2 的维护模式。

结论

禁用 Magento 2 维护模式是一个简单的过程,只需要使用 Shell/Bash 命令行工具即可轻松完成。上述步骤可以帮助您在下一次维护或者升级过程中禁用维护模式,保持您的网站的正常运营。