开启/关闭 插件功能
配置参数
配置项 | 类型 | 示例 | 描述 |
---|---|---|---|
enable_plugin | boolean | true | 是否开启插件模块 |
操作步骤:
配置开启插件模块
修改配置
登陆 ONES 服务器,进入当前运行中实例的安装目录
cd /data/ones/pkg/ones-example-3.14.xxxxx
修改<enable_plugin>
配置项的值为true
./json-util -config config.json -operator add -key enable_plugin -valtype bool -value true
重启容器
注意:执行以下命令将造成 ONES 服务暂时不可用
containerID=$(docker ps |grep $(./json-util -config config.json -operator select -key deploy_name) | grep '0.0.0.0:'$(./json-util -operator select -key port -config ./config.json)'->' | awk '{print $1}')
./onesconfigure update $containerID --restart
当观察到如下输出,则重启已经完成。稍等几分钟后 ONES 服务将可以正常访问,开启插件模块配置完成
[root@localhost ones-example-3.14.xxxxx]# containerID=$(docker ps |grep $(./json-util -config config.json -operator select -key deploy_name) | grep '0.0.0.0:'$(./json-util -operator select -key port -config ./config.json)'->' | awk '{print $1}')
[root@localhost ones-example-3.14.xxxxx]# ./onesconfigure update $containerID --restart
[WARN] 2023/05/26 17:48:53 update apps
[INFO] 2023/05/26 17:48:57 restart container...
[INFO] 2023/05/26 17:49:07 restart container success, container_id=fb72e1948961
验证
重启完成几分钟后,登陆 ONES 系统,进入 「团队配置中心」页面,在左侧菜单栏最下方可以看到插件管理模块则正常
配置关闭插件模块
修改配置
登陆 ONES 服务器,进入当前运行中实例的安装目录
cd /data/ones/pkg/ones-example-3.14.xxxxx
修改<enable_plugin>
配置项的值为false
./json-util -config config.json -operator add -key enable_plugin -valtype bool -value false
重启容器
注意:执行以下命令将造成 ONES 服务暂时不可用
containerID=$(docker ps |grep $(./json-util -config config.json -operator select -key deploy_name) | grep '0.0.0.0:'$(./json-util -operator select -key port -config ./config.json)'->' | awk '{print $1}')
./onesconfigure update $containerID --restart
当观察到如下输出,则重启已经完成。稍等几分钟后 ONES 服务将可以正常访问,关闭插件模块配置完成
[root@localhost ones-example-3.14.xxxxx]# containerID=$(docker ps |grep $(./json-util -config config.json -operator select -key deploy_name) | grep '0.0.0.0:'$(./json-util -operator select -key port -config ./config.json)'->' | awk '{print $1}')
[root@localhost ones-example-3.14.xxxxx]# ./onesconfigure update $containerID --restart
[WARN] 2023/05/26 17:48:53 update apps
[INFO] 2023/05/26 17:48:57 restart container...
[INFO] 2023/05/26 17:49:07 restart container success, container_id=fb72e1948961
验证
重启完成几分钟后,登陆 ONES 系统,进入 「团队配置中心」页面,在左侧菜单栏最下方看不到插件管理模块则正常