0

要在不重新启动韵律服务器的情况下添加 muc 组件,请执行以下代码,然后尝试使用 rest api 执行它。但 muc 组件无法加载。

--------------code begin---------------
localh hm = require "core.hostmanager";
local mm = require "core.modulemanager";

host= "muc.example.co";
hm.activate(host);
local key= "component_module";
local value = "muc";
cmg._M.set(host, key, value);
mm.load_modules_for_host(host);

-----code end-----------------

我们如何在不重新加载韵律服务器的情况下启用 muc 服务点。

4

1 回答 1

0

使用下面的代码我们可以实现它

local muc_host= "test.example.com"
local hm = require "core.hostmanager";
local cmg = require "core.configmanager";
local append_text= 'Component "'..muc_host..'" "muc" \n'

            --appending the text to config file
            local file_name="/etc/prosody/prosody.cfg.lua"
            file = io.open(file_name, "a")
            file:write(append_text)
            file:close()
            -- load & activate new muc server
            local lstatus=cmg.load(file_name)
            local new_server_status = hm.activate(muc_host)
            mm.load_modules_for_host(host)
于 2017-01-02T10:25:38.640 回答