From bc2daa6ae1fec2c8c7a5561c19e1caae9f35acd4 Mon Sep 17 00:00:00 2001 From: shirely16 Date: Wed, 16 Jun 2021 14:46:12 +0800 Subject: [PATCH] Modify openvswitch service startup mode of the service openvswitch start --- docs/en/docs/Virtualization/environment-preparation.md | 4 ++-- ...44\207\344\275\277\347\224\250\347\216\257\345\242\203.md" | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/docs/Virtualization/environment-preparation.md b/docs/en/docs/Virtualization/environment-preparation.md index dd5010c76..f2d1dce07 100644 --- a/docs/en/docs/Virtualization/environment-preparation.md +++ b/docs/en/docs/Virtualization/environment-preparation.md @@ -179,7 +179,7 @@ If the Open vSwitch is used to provide virtual network, you need to install the 2. Start the Open vSwitch service. ``` - # systemctl start openvswitch + # service openvswitch start ``` @@ -242,7 +242,7 @@ Check whether the Open vSwitch components, openvswitch-kmod and openvswitch, are 3. Check whether the Open vSwitch service is started successfully. If the service is in the **Active** state, the service is started successfully. You can use the command line tool provided by the Open vSwitch. The command and output are as follows: ``` - # systemctl status openvswitch + # service openvswitch status ● openvswitch.service - LSB: Open vSwitch switch Loaded: loaded (/etc/rc.d/init.d/openvswitch; generated) Active: active (running) since Sat 2019-08-17 09:47:14 CST; 4min 39s ago diff --git "a/docs/zh/docs/Virtualization/\345\207\206\345\244\207\344\275\277\347\224\250\347\216\257\345\242\203.md" "b/docs/zh/docs/Virtualization/\345\207\206\345\244\207\344\275\277\347\224\250\347\216\257\345\242\203.md" index 2d6564799..f5394250c 100644 --- "a/docs/zh/docs/Virtualization/\345\207\206\345\244\207\344\275\277\347\224\250\347\216\257\345\242\203.md" +++ "b/docs/zh/docs/Virtualization/\345\207\206\345\244\207\344\275\277\347\224\250\347\216\257\345\242\203.md" @@ -181,7 +181,7 @@ Open vSwitch网桥,具有更便捷的自动化编排能力。搭建Open vSwitc 2. 启动Open vSwitch服务。 ``` - # systemctl start openvswitch + # service openvswitch start ``` @@ -244,7 +244,7 @@ Open vSwitch网桥,具有更便捷的自动化编排能力。搭建Open vSwitc 3. 查看Open vSwitch服务是否启动成功。若服务处于“Active”状态,说明服务启动成功,可以正常使用Open vSwitch提供的命令行工具,命令和回显如下: ``` - $ systemctl status openvswitch + $ service openvswitch status ● openvswitch.service - LSB: Open vSwitch switch Loaded: loaded (/etc/rc.d/init.d/openvswitch; generated) Active: active (running) since Sat 2019-08-17 09:47:14 CST; 4min 39s ago -- Gitee