cockpit-project / cockpit

Cockpit is a web-based graphical interface for servers.
http://www.cockpit-project.org/
GNU Lesser General Public License v2.1
10.93k stars 1.09k forks source link

cockpit.http().request() truncates response #19567

Closed zhaojing1987 closed 9 months ago

zhaojing1987 commented 10 months ago

Explain what happens

When I used the 300 version of cockit, everything was normal, but when I upgraded to 303, an error occurred:

cockpit.http({
            "address": "",
            "port": 8080,
        }).request({ path: “test”, method: "GET", body: "" }).then((response) => {
            console.log(response);
            response = JSON.parse(response);
        }).catch((error) => {
            console.log(error);
        });

When I used this code to obtain JSON data for an API, the data returned by the API was truncated in the printed response without any changes. It seems that after multiple calls, the truncated position is different. The returned JSON data has approximately 6000 rows and a size of over 200 k,The following is an error:

 JSON.parse: expected ':' after property name in object at line 1 column 34042 of the JSON data

sometimes:

 JSON.parse: expected ',' or '}' after property value in object at line 1 column 3008 of the JSON data

Version of Cockpit

303-1~bpo22.04.1

Where is the problem in Cockpit?

None

Server operating system

Ubuntu

Server operating system version

22.04

What browsers are you using?

Firefox

System log

No response

martinpitt commented 10 months ago

I tried to reproduce this with Cockpit 303 (on Fedora 38, but this shouldn't matter much). I found a big JSON file (~.cache/typescript/4.8/node_modules/devtools-protocol/json/browser_protocol.json), which has a complex and fine-grained structure. I copied it to /tmp/big.json, started python3 -m http.server on it.

Then I logged into Cockpit, and ran this in the JS console:

cockpit.http({address: "", port: 8000}).request({ path: "big.json", method: "GET", body: ""}).then(r => console.log(JSON.parse(r))).catch(console.error)

This has succeeded ten times, and didn't fail.

You said your file is about 200kB and 6000 rows. Conveniently, cockpit's own package-lock.json is about the same (5631 lines and 206 kB), so I ran the above http request on that. But that succeeds as well.

So this may be related to different behaviour of the web service that you run on port 8080 -- it perhaps has some delays in between the chunks, different chunk size, different Transfer-Encoding or whatnot. So I'm afraid we don't have a reproducer yet. Can you tell us what service this is, or at least some of its properties how it is implemented, and what exactly curl -o /dev/null -v http://localhost:8080/test says?

zhaojing1987 commented 10 months ago

The FASTAPI service deployed on the Docker runs on port 8080, and through this interface, it will return a JSON data。product_zh.json But I switched to the following code, which can run normally:

fetch('', { method: 'GET',      
        }).then(async response => {
            const data = await response.json();
        }).catch((error) => {
            console.log(error);
        });

Of course, there is one difference here, which is the fetch method. I proxy the 8080 service through nginx because the browser does not recognize calling through container names.

zhaojing1987 commented 10 months ago

I passed these two tests separately, and it was normal when I passed the fetch:

cockpit.http({
    "address": "**",
    "port": 80,
    "headers": {
        'Content-Type': 'application/json; charset=utf-8'
    }
}).request({ path: "/api/apps/available/zh", method: "GET", body: "" }).then((response) => {
    console.log(response);
    let data = JSON.parse(response);
}).catch((error) => {
    console.log(error);
});
fetch('http://**/api/apps/available/zh', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json; charset=utf-8'
    }
}).then(async response => {
    const data = await response.json();
}).catch((error) => {
    console.log(error);
});

@martinpitt

martinpitt commented 10 months ago

Do you mean that both approaches (cockpit.http and fetch) worked in this case? Or did cockpit.http still fail? You used a different port now, i.e. does that mean that the nginx reverse proxy in between causes this? (I'm not saying that nginx has a bug, just that it changes the timing/chunking/encoding).

Can you please try this:

{ cat <<EOF; sleep 3; }| python3 -m cockpit.bridge > /tmp/out 2>&1
64

{
  "command": "init",
  "host": "localhost",
  "version": 1
}
141

{
  "command": "open",
  "channel": "ch1",
  "payload": "http-stream2",
  "path": "/package-lock.json",
  "method": "GET",
  "port": 8080
}
45

{
  "command": "done",
  "channel": "ch1"
}
EOF

This should do the HTTP request against localhost:8080 and dump the whole file (plus some communication metadata) into /tmp/out. Please check the last lines of /tmp/out if the JSON was truncated or whether it is complete. If possible, i.e. if the JSON data does not have anything personal/secret, please attach it here.

zhaojing1987 commented 10 months ago

This is the json data :product_zh.json use fetch is OK,cockpit.http is error

cockpit.http({
    "address": "**",
    "port": 80,
    "headers": {
        'Content-Type': 'application/json; charset=utf-8'
    }
}).request({ path: "/api/apps/available/zh", method: "GET", body: "" }).then((response) => {
    console.log(response);
    let data = JSON.parse(response);
}).catch((error) => {
    console.log(error);
});
fetch('http://**/api/apps/available/zh', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json; charset=utf-8'
    }
}).then(async response => {
    const data = await response.json();
}).catch((error) => {
    console.log(error);
});

I made some modifications and executed them:

{ cat <<EOF; sleep 3; }| python3 -m cockpit.bridge > /tmp/out 2>&1
64

{
  "command": "init",
  "host": "websoft9-apphub",
  "version": 1
}
141

{
  "command": "open",
  "channel": "ch1",
  "payload": "http-stream2",
  "path": "/apps/available/zh",
  "method": "GET",
  "port": 8080
}
45

{
  "command": "done",
  "channel": "ch1"
}
EOF

/tmp.out

1016

{
  "command": "init",
  "version": 1,
  "capabilities": {
    "explicit-superuser": true
  },
  "os-release": {
    "PRETTY_NAME": "Ubuntu 22.04.3 LTS",
    "NAME": "Ubuntu",
    "VERSION_ID": "22.04",
    "VERSION": "22.04.3 LTS (Jammy Jellyfish)",
    "VERSION_CODENAME": "jammy",
    "ID": "ubuntu",
    "ID_LIKE": "debian",
    "HOME_URL": "https://www.ubuntu.com/",
    "SUPPORT_URL": "https://help.ubuntu.com/",
    "BUG_REPORT_URL": "https://bugs.launchpad.net/ubuntu/",
    "PRIVACY_POLICY_URL": "https://www.ubuntu.com/legal/terms-and-policies/privacy-policy",
    "UBUNTU_CODENAME": "jammy"
  },
  "packages": {
    "static": null,
    "network": null,
    "users": null,
    "shell": null,
    "settings": null,
    "pcp": null,
    "navigator": null,
    "system": null,
    "metrics": null,
    "gitea": null,
    "apps": null,
    "appstore": null,
    "base1": null,
    "storage": null,
    "sosreport": null,
    "updates": null,
    "nginx": null,
    "myapps": null,
    "container": null
  }
}
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 94, in control_received
    message = typechecked(json.loads(data), dict)
  File "/usr/lib/python3.10/json/__init__.py", line 346, in loads
    return _default_decoder.decode(s)
  File "/usr/lib/python3.10/json/decoder.py", line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "/usr/lib/python3.10/json/decoder.py", line 353, in raw_decode
    obj, end = self.scan_once(s, idx)
json.decoder.JSONDecodeError: Expecting ':' delimiter: line 4 column 12 (char 63)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
    exec(code, run_globals)
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 295, in <module>
    main()
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 291, in main
    run_async(run(args), debug=args.debug)
  File "/usr/lib/python3/dist-packages/cockpit/_vendor/systemd_ctypes/event.py", line 109, in run_async
    asyncio.run(main, debug=debug)
  File "/usr/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/usr/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 180, in run
    await router.communicate()
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 228, in communicate
    await self._communication_done
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 214, in data_received
    result = self.consume_one_frame(self.buffer)
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 149, in consume_one_frame
    self.frame_received(view[start:end])
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 90, in frame_received
    self.control_received(data)
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 106, in control_received
    raise CockpitProtocolError(f'control message: {exc!s}') from exc
cockpit.protocol.CockpitProtocolError: control message: Expecting ':' delimiter: line 4 column 12 (char 63)
martinpitt commented 10 months ago

Ah, you can't modify the input JSON without also adjusting the numbers (which are byte counts). Also, please don't modify the "host" value in the init block, it's not the host that http talks to. Please try this:

{ cat <<EOF; sleep 3; }| python3 -m cockpit.bridge > /tmp/out 2>&1
64

{
  "command": "init",
  "host": "localhost",
  "version": 1
}
141

{
  "command": "open",
  "channel": "ch1",
  "payload": "http-stream2",
  "path": "/apps/available/zh",
  "method": "GET",
  "port": 8080
}
45

{
  "command": "done",
  "channel": "ch1"
}
EOF
zhaojing1987 commented 10 months ago
cockpit.channels.http-ERROR: Failed to open localhost:8080: <class 'ConnectionRefusedError'> [Errno 111] Connection refused

But the API that needs to be called is in "websoft9 apphub: 8080/apps/available/zh", where ‘websoft9-apphub‘ is a docker container。

martinpitt commented 10 months ago

I thought you had an nginx reverse proxy for that. With your fetch() variant you didn't call port 8080 on localhost, but on some http://**/api/... What is that "**"? If it's"localhost", then it's the same as the cockpit GET call. If it's something else, then you have to specify that host name in the cockpit.http call as well, in the address field. E.g.

cockpit.http({address: "yourhostname", port: 8080}).get("/apps/available/zh")

Please don't mix too many things -- port forwarding, different http addresses, nginx or not. It's really hard to know what you are actually doing.

zhaojing1987 commented 10 months ago

I have reorganized the issue and developed a React plugin myself, which has been deployed to/usr/share/cockpit. This plugin can run normally on Cockpit-300, but when I upgraded Cockpit to 303, the plugin sent an error. The following is the code:

        cockpit.http({
            "address": "remote ip",
            "port": 80,
            "headers": {
                'Content-Type': 'application/json; charset=utf-8'
            }
        }).request({ path: "/api/apps/available/zh", method: "GET", body: "" }).then((response) => {
            console.log(response);
            let data = JSON.parse(response);
        }).catch((error) => {
            console.log(error);
        });

The response printed in then is a malformed JSON, and it seems that some data is lost in the middle。

To verify if it is a problem with the server API, I used fetch to test, and the code is as follows:

fetch('http://remote ip/api/apps/available/zh', {
            method: 'GET',
            headers: {
                'Content-Type': 'application/json; charset=utf-8'
            }
        }).then(async response => {
            const data = await response.json();
            console.log(data );
        }).catch((error) => {
            console.log(error);
        });

The data printed through this code is a standard JSON, and the React program can also run normally。

Based on the above conclusion, I suspect that the upgrade of cockpit may have caused problems with cockpit. http(). request(),

The following is the JSON data returned by the API:product_zh.json

The following is the JSON data returned using the cockpit method:product_zh_cockpit.json

the error:

Uncaught SyntaxError: JSON.parse: expected ',' or '}' after property value in object at line 1 column 34557 of the JSON data

refresh browser:

Uncaught SyntaxError: JSON.parse: expected ':' after property name in object at line 1 column 9068 of the JSON data

Additionally, as the API is a fast API deployed on a Docker container, I initially accessed it directly using the container name and port, and the returned results were the same. To verify if it was a problem with cockpit, I added the fetch method, but I also proxy this API to nginx:

    location /api/ {
        proxy_pass http://websoft9-apphub:8080/;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }

But the above code is implemented by accessing the proxy of nginx, so I think their returns should be consistent from nginx's perspective. Therefore, I still doubt whether it is a problem with cockpit。

I am a novice, sorry, there are some areas that I cannot describe clearly. Is there anything else I need to provide?

martinpitt commented 10 months ago

Interesting, this is not a clean truncation. This is the place around line 1771 of the original document where the response starts to differ:

      {
        "id": "dc26afc3-6e11-4970-ab84-241b38000399",
        "key": "ARTEMIS",
        "value": "latest"
      }
    ],
    "vcpu": 1,
    "memory": 1,
    "storage": 1,
    "logo": {
      "imageurl": "https://libs.websoft9.com/Websoft9/logo/product/activemq-websoft9.png"
    },

and the cockpit.http response:

            {
                "id": "dc26afc3-6e11-4970-ab84-241b38000399"zh/jupyterhub/jupyterhub-gui-websoft9.webp"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1 [... very very *very* long line ... ]

That "jupyterhub-gui-websoft9" appears in line 2137, so it is missing a few blocks, and then gets corrupted.

I'm still interested in the direct bridge invocation (via the proxy), as this will tell us much more what's going on. Also, the output of curl -o /dev/null -v http://localhost:8080/apps/available/zh (as I asked above) would be interesting.

zhaojing1987 commented 10 months ago

Do you mean to use this code:

{ cat <<EOF; sleep 3; }| python3 -m cockpit.bridge > /tmp/out 2>&1
64

{
  "command": "init",
  "host": "localhost",
  "version": 1
}
141

{
  "command": "open",
  "channel": "ch1",
  "payload": "http-stream2",
  "path": "/api/apps/available/zh",
  "method": "GET",
  "port": 80
}
45

{
  "command": "done",
  "channel": "ch1"
}
EOF

This is the execution result, and I feel that it is also a problem caused by the illegal phase of JSON

1016

{
  "command": "init",
  "version": 1,
  "capabilities": {
    "explicit-superuser": true
  },
  "os-release": {
    "PRETTY_NAME": "Ubuntu 22.04.3 LTS",
    "NAME": "Ubuntu",
    "VERSION_ID": "22.04",
    "VERSION": "22.04.3 LTS (Jammy Jellyfish)",
    "VERSION_CODENAME": "jammy",
    "ID": "ubuntu",
    "ID_LIKE": "debian",
    "HOME_URL": "https://www.ubuntu.com/",
    "SUPPORT_URL": "https://help.ubuntu.com/",
    "BUG_REPORT_URL": "https://bugs.launchpad.net/ubuntu/",
    "PRIVACY_POLICY_URL": "https://www.ubuntu.com/legal/terms-and-policies/privacy-policy",
    "UBUNTU_CODENAME": "jammy"
  },
  "packages": {
    "static": null,
    "network": null,
    "users": null,
    "shell": null,
    "settings": null,
    "pcp": null,
    "navigator": null,
    "system": null,
    "metrics": null,
    "gitea": null,
    "apps": null,
    "appstore": null,
    "base1": null,
    "storage": null,
    "sosreport": null,
    "updates": null,
    "nginx": null,
    "myapps": null,
    "container": null
  }
}
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 94, in control_received
    message = typechecked(json.loads(data), dict)
  File "/usr/lib/python3.10/json/__init__.py", line 346, in loads
    return _default_decoder.decode(s)
  File "/usr/lib/python3.10/json/decoder.py", line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "/usr/lib/python3.10/json/decoder.py", line 353, in raw_decode
    obj, end = self.scan_once(s, idx)
json.decoder.JSONDecodeError: Expecting ',' delimiter: line 8 column 1 (char 140)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
    exec(code, run_globals)
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 295, in <module>
    main()
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 291, in main
    run_async(run(args), debug=args.debug)
  File "/usr/lib/python3/dist-packages/cockpit/_vendor/systemd_ctypes/event.py", line 109, in run_async
    asyncio.run(main, debug=debug)
  File "/usr/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/usr/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/usr/lib/python3/dist-packages/cockpit/bridge.py", line 180, in run
    await router.communicate()
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 228, in communicate
    await self._communication_done
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 214, in data_received
    result = self.consume_one_frame(self.buffer)
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 149, in consume_one_frame
    self.frame_received(view[start:end])
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 90, in frame_received
    self.control_received(data)
  File "/usr/lib/python3/dist-packages/cockpit/protocol.py", line 106, in control_received
    raise CockpitProtocolError(f'control message: {exc!s}') from exc
cockpit.protocol.CockpitProtocolError: control message: Expecting ',' delimiter: line 8 column 1 (char 140)
martinpitt commented 10 months ago

No, that error happens because that input JSON is somehow malformed. I just ran it again, and it works for me. Note that it has to be exactly this JSON, otherwise these "magic" numbers (which are the byte counts) won't work. Perhaps try this:

git clone --depth=1 https://github.com/cockpit-project/cockpit /tmp/cockpit
PYTHONPATH=/tmp/cockpit/src python3 -m cockpit.misc.print http path=/apps/available/zh port=8080 : sleep 3 | python3 -m cockpit.bridge > /tmp/out 2>&1

With that you can modify the path= and/or the port= if necessary, and it's more flexible.

zhaojing1987 commented 10 months ago

OK,this is the result:

1016

{
  "command": "init",
  "version": 1,
  "capabilities": {
    "explicit-superuser": true
  },
  "os-release": {
    "PRETTY_NAME": "Ubuntu 22.04.3 LTS",
    "NAME": "Ubuntu",
    "VERSION_ID": "22.04",
    "VERSION": "22.04.3 LTS (Jammy Jellyfish)",
    "VERSION_CODENAME": "jammy",
    "ID": "ubuntu",
    "ID_LIKE": "debian",
    "HOME_URL": "https://www.ubuntu.com/",
    "SUPPORT_URL": "https://help.ubuntu.com/",
    "BUG_REPORT_URL": "https://bugs.launchpad.net/ubuntu/",
    "PRIVACY_POLICY_URL": "https://www.ubuntu.com/legal/terms-and-policies/privacy-policy",
    "UBUNTU_CODENAME": "jammy"
  },
  "packages": {
    "static": null,
    "network": null,
    "users": null,
    "shell": null,
    "settings": null,
    "pcp": null,
    "navigator": null,
    "system": null,
    "metrics": null,
    "gitea": null,
    "apps": null,
    "appstore": null,
    "base1": null,
    "storage": null,
    "sosreport": null,
    "updates": null,
    "nginx": null,
    "myapps": null,
    "container": null
  }
}
46

{
  "channel": "ch1",
  "command": "ready"
}
484

{
  "channel": "ch1",
  "command": "response",
  "status": 200,
  "reason": "OK",
  "headers": {
    "Server": "openresty",
    "Date": "Tue, 07 Nov 2023 07:08:48 GMT",
    "Content-Type": "application/json",
    "Content-Length": "149986",
    "Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
    "Access-Control-Allow-Headers": "DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization,x-api-key"
  }
}
4100
ch1
[{"sys":{"id":"DEOp8ynxuO4rMELqtrNRl"},"key":"wordpress","hot":200,"trademark":"WordPress","summary":"全球 42% 的网页基于 WordPress 构建","overview":"WordPress 是一个流行的开源建站平台,市场占有率极高。它以其易用性、易扩展性( 插件 、模板 、二次开发)、功能强大、美观、搜索引擎友好等特征而广泛流行。","websiteurl":"https://wordpress.com/","description":"按你的方式设计\n\n设计您想象的任何东西。从一张空白的画布开始,或者从各种各样的主题和图案中进行选择。自定义每个细节,从颜色和字体到布局和功能。\n\n插入和扩展\n\n让 WordPress 做任何你需要它做的事。添加商店、邮寄列表、投资组合、社交提要、分析;您可以控制超过 55,000 个插件。\n\n拥有你所做的 \n\n您的内容、设计和数据始终属于您。使用 WordPress,您可以自由地讲述您的故事、发展您的品牌,或者只是做您自己。\n\n充满信心地创造\n\n由拥有数十年经验的开源社区构建,其热情的贡献者致力于保持 WordPress 尽可能稳定和安全。","screenshots":[{"id":"94655745-52ac-419b-bb06-02aa15e0b923","key":"登录界面","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/wordpress/wordpress-add-site-websoft9.png"},{"id":"18f86757-dff9-4e88-94de-e3af48eef29c","key":"2","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/wordpress/wordpress-addplugins-websoft9.png"},{"id":"e5fcd98b-c8d9-4e32-b9a3-d8b6e2e75276","key":"3","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/wordpress/wordpress-addthemes-websoft9.png"},{"id":"0b86adb5-5be4-418a-8e13-bd5693b21e74","key":"4","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/wordpress/wordpress-createmenu-websoft9.png"}],"distribution":[{"id":"f6ee7f47-e0eb-4616-aaa4-71015737c29a","key":"Community","value":"6.3,latest"},{"id":"2edce2f3-adae-40ff-b578-aaf01125ca5f","key":"Multisites","value":"latest"},{"id":"828bfbbd-97bf-4fe6-b6ac-8a76e594b06c","key":"Solution","value":"MinIO,Matomo"},{"id":"dac3dbb6-254c-4192-96fb-e33f14ba2925","key":"Free themes","value":"latest"},{"id":"559e2a70-0949-44fa-8a78-dc59308086dd","key":"Basic services","value":"latest"},{"id":"ce6ea7a9-7a8b-4fd0-ac6d-58393b83d475","key":"Senior services","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/wordpress-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}},{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"marketing","title":"市场营销","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"5ISP0zt3tv0qnnANmnff3n"},"key":"zentao","hot":300,"trademark":"Zentao","summary":"ZenTao(禅道) 是一款优秀的研发项目管理软件","overview":"ZenTaoPMS是一款开源项目管理软件(PMS),集产品管理、项目管理、质量管理、文档管理和事物管理于一体。","websiteurl":"https://www.zentao.net/","description":"ZenTao(禅道)是一款国产的开源项目管理软件,她的核心管理思想基于敏捷方法 scrum,内置了产品管理和项目管理,同时又根据国内研发现状补充了测试管理、计划管理、发布管理、文档管理、事务管理等功能,在一个软件中就可以将软件研发中的需求、任务、bug、用例、计划、发布等要素有序的跟踪管理起来,完整地覆盖了项目管理的核心流程。","screenshots":[{"id":"b7726315-f237-412a-bf32-827f7f29a8fd","key":"zentao","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/zentao/zentao-gui-websoft9.png"}],"distribution":[{"id":"54029d6d-4383-4418-9d4e-29e6b8cbfd77","key":"Community3724
ch1
","value":"18.8,latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/zentao-websoft9.png"},"catalogCollection":{"items":[{"key":"agile","title":"需求/看板/缺陷","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"collaboration","title":"协作办公"}]}},{"key":"task","title":"任务协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}},{"key":"pm-task","title":"项目/任务","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"3vDdQaaw37Be1wnTOdVdbA"},"key":"magento","hot":null,"trademark":"Magento","summary":"面向全球用户的开源电商系统","overview":"面向全球的企业级开源电商系统,支持B2C、B2B等应用场景,广泛应用于企业电商、独立站建站。","websiteurl":"https://business.adobe.com/products/magento/open-source.html","description":"Magento是面向全球用户的开源电商系统,采用PHP开发,使用Zend Framwork框架,支持B2C、B2B等应用场景。设计灵活、健壮,具有模块化架构体系和丰富的功能组件,广泛应用于企业电商、独立站建站。Magento易与第三方应用系统无缝集成,可处理海量并发请求,方便通过配置和二次化开发建设一个多种用途、多渠道的电子商务门户。","screenshots":[{"id":"df6ff705-b696-4110-99ad-701e58835364","key":"mall","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/magento/magento-mall-websoft9.png"},{"id":"0efc568f-1567-4436-ae35-1ca73404bdb6","key":"backend","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/magento/magento-backend-websoft9.png"}],"distribution":[{"id":"ef21e5a5-2c46-42a1-ab55-8b12f2405914","key":"Community","value":"2.4.6,latest"}],"vcpu":2,"memory":8,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/magento-websoft9.png"},"catalogCollection":{"items":[{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"38qvHHbnN0Me2tMrguC9cj"},"key":"prestashop","hot":null,"trademark":"Prestashop","summary":"一款开源商城软件","overview":"PrestaShop是一款多功能、跨平台的开源电子商务解决方案,采用PHP+MySQL开发。始于2008年,发展迅速,全球已超过四万家网店采用Prestashop进行部署。","websiteurl":"https://www.prestashop.com/en","description":"PrestaShop是一款多功能、跨平台的开源电子商务解决方案,采用PHP+MySQL开发。始于2008年,发展迅速,全球已超过四万家网店采用Prestashop进行部署。Prestashop基于Smarty引擎编程设计,模块化设计,扩展性强,能轻易实现多种语言,多种货币浏览交易,支持Paypal等几乎所有的支付手段,是外贸网站建站的佳选。","screenshots":[{"id":"a6580172-4b8f-444c-b57f-ec480e042765","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/prestashop/pretashopui-websoft9.png"},{"id":"d75f5f27-b8b8-4695-8d60-08318887b009","key":"backend","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/prestashop/prestashop-backend-websoft9.png"}],"distribution":[{"id":"6cd21b42-4b6e-43dd-89b5-a849a55b01eb","key":"Community","value":"8,latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/prestashop-websoft9.png"},"catalogCollection":{"items":[{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"1qjlphna9bZr2UIJuPimXG"},"key":"grafana","hot":null,"trademark":"Grafana","summary":"开源的度量分232
ch1
析与可视化套件","overview":"开源的度量分析与可视化套件,常用于时间序列数据及应用程序分析的可视化展示","websiteurl":"https://grafana.com/","description":"Grafana是一个开源的度量�4100
ch1
��析与可视化展示应用。多被用作基础设施的时间序列数据和应用程序的可视化分析,在工业传感器、家庭自动化、天气和过程控制等其他领域也被广泛的使用。","screenshots":[{"id":"4d394b47-b1ca-4624-b183-b9bd235098c9","key":"dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/grafana/grafana-dashboard-websoft9.png"},{"id":"74cef588-177f-404d-8a09-f56cf284eae5","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/grafana/grafana-dashboardui.png"}],"distribution":[{"id":"92c09f2d-c27f-4514-9963-055f21501e7c","key":"Community","value":"10.1.0,latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/grafana-websoft9.png"},"catalogCollection":{"items":[{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"data-integration","title":"数据集成","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"4A0pAbnZMH1BV81VeRdu9g"},"key":"scratch","hot":10000,"trademark":"Scratch","summary":"少儿编程工具","overview":"Scratch 是一款由麻省理工学院设计开发的少儿编程工具。使用 Scratch,你可以编写属于你的互动程序,像是故事、游戏、动画,然后将你的创意分享给全世界。","websiteurl":"https://scratch.mit.edu/","description":"Scratch 是一款由麻省理工学院设计开发的少儿编程工具。使用 Scratch,你可以编写属于你的互动程序,像是故事、游戏、动画,然后将你的创意分享给全世界。Scratch 是一个部署在服务器上的 Web 版本,有浏览器就可以使用 Scratch。","screenshots":[{"id":"54f9a68b-a0ba-4a5b-bcd4-e4a08e97a627","key":"scratch","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/scratch/scratch-gui-websoft9.png"}],"distribution":[{"id":"f079786a-796c-4c8a-bc64-5ee3f597d3fe","key":"Community","value":"v2.3.13"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/scratch-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"yhZBwXL9qelsD2sPfsMxC"},"key":"awx","hot":null,"trademark":"AWX","summary":"是Ansible Tower的开源版,Ansible Tower是一个可视化界面的服务器自动部署和运维管理平台。","overview":"AWX 是Ansible Tower的开源版,Ansible Tower是一个可视化界面的服务器自动部署和运维管理平台。可以通过可视仪表板,基于角色的访问控制,作业计划,集成通知和图形库存管理来集中和控制IT基础架构。","websiteurl":"https://www.ansible.com/community/awx-project","description":"AWX 是Ansible Tower的开源版,Ansible Tower是一个可视化界面的服务器自动部署和运维管理平台。您可以通过可视仪表板,基于角色的访问控制,作业计划,集成通知和图形库存管理来集中和控制IT基础架构。使用REST API和CLI轻松将Ansible Tower嵌入到现有工具和流程中。","screenshots":[{"id":"75d8a576-1248-4cdb-9a1d-59997f298421","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/awx/awx-login-websoft9.png"},{"id":"063caf7f-b721-4b32-a8be-3d433d68663c","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/awx/awx-gui-websoft9.png"}],"distribution":[{"id":"57d65dc2-e976-4950-8f83-deff3ce1fc0e","key":"Community","value":"22.5.0"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/awx-websoft9.png"},"catalogCollection":{"items":[{"key":"rpa","title":"流程机器人","catalogCollection":{"items":[{"key":"automation","title":"自动化"}]}}]}},{"sys":{"id":"2KY3eyxKkWDp2ZDTS66aP4"},"key":"gogs","hot":10000,"trademark":"Gogs","summary":"一款易搭建的轻量级自助 Git 仓库系统","overview":"极易�4100
ch1
��建的自助 Git 仓库系统,能够通过独立的二进制分发,并且支持 Go 语言支持的所有平台","websiteurl":"https://gogs.io/","description":"Gogs 是一款极易搭建的自助 Git 仓库系统,比 GitLab 更加轻量级。Gogs 能够通过独立的二进制分发,并且支持 Go 语言支持的 所有平台,包括 Linux、Mac OS X、Windows 以及 ARM 平台。","screenshots":[{"id":"8248371f-a25f-4ae6-82be-7c6d8f7b9bb0","key":"gui start","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/gogs/gogs-guistart-websoft9.png"},{"id":"94b41611-ac41-451c-a7bd-3644bea3e5a4","key":"dashboard","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/gogs/gogs-dashboard-websoft9.png"}],"distribution":[{"id":"ff8ceafb-dd7f-4dfc-b523-f13edefa88a7","key":"Community","value":"0.13"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/gogs-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}}]}},{"sys":{"id":"Hpc521cA2XlC4Mts7xUMz"},"key":"joomla","hot":400,"trademark":"Joomla","summary":"网站内容管理系统","overview":"Joomla是全球三大开源内容管理系统之一 (CMS),占据全球5%的建站市场。其拥有高度的可定制性和电子商务方面的优势。","websiteurl":"https://www.joomla.org/","description":"Joomla是全球三大开源内容管理系统之一 (CMS),占据全球5%的建站市场。其拥有高度的可定制性和电子商务方面的优势","screenshots":[{"id":"1be447df-8391-42b0-9326-4b83939d0914","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/joomla/joomla-wizard7-websoft9.png"},{"id":"f4312483-bc35-4439-aaf7-8264bb37f4f2","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/joomla/joomla-wizard8-websoft9.png"}],"distribution":[{"id":"06690cf9-ead9-444e-9f6f-3b5514a89c90","key":"Community","value":"4.3.2"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/joomla-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"6C2fZYqNNJlDNcp0aYi82"},"key":"akeneo","hot":10000,"trademark":"Akeneo","summary":"开源产品信息管理","overview":"使中小型企业能够以低成本开始集中、管理、丰富和分发其产品信息。","websiteurl":"https://www.akeneo.com/","description":"Akeneo PIM Community Edition offers all the standard PIM functions you would expect from a PIM system, plus a great and intuitive user interface.","screenshots":[{"id":"9d6ca786-b209-4d95-84ac-1deb219fc4cb","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/akeneo/akeneo-main-websoft9.png"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"v7.0.22"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/akeneo-websoft9.png"},"catalogCollection":{"items":[{"key":"master-data","title":"主数据管理","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"1Xivog4v0pFbLL9YjN9bvx"},"key":"moodle","hot":null,"trademark":"Moodle","summary":"面向全球用户的开源在线教育系统","overview":"Moodle是一个开源的在线教育系统(慕课)。采用PHP+MySQL开发,功能强大、界面简单,是全球各大中学院校建立开放式课程系统的首选软件。","websiteurl":"https://moodle.com/","description":"Moodle是一个开源的在线教育系统(慕课)。采用PHP+MySQL开发,界面友好,符合SCORM/AICC标准。功能强大、界面简单、精巧。它是eLearning技术先驱,也是先进在线教学理念和实�4100
ch1
��的集大成者,已成为全球各大中学院校建立开放式课程系统的首选软件。主要模块:课程管理、作业模块、聊天模块、投票模块、论坛模块、测验模块、资源模块、问卷调查模块、互动评价(workshop)。Moodle具有先进的教学理念,创设的虚拟学习环境中有三个维度:技术管理维度、学习任务维度和社会交往维度,以社会建构主义教学法为其设计的理论基础,它提倡师生或学生彼此间共同思考,合作解决问题。","screenshots":[{"id":"d4eeb1b3-60e3-447e-b5de-0c9d83b319a4","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/moodle/moodlegui-websoft9.jpg"},{"id":"4feacb0b-8c82-4ef8-b0a5-13aed1420487","key":"mobile","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/moodle/moodle-mobile-websoft9.png"}],"distribution":[{"id":"35cee561-6e63-4d3a-a210-46719b0c682b","key":"Community","value":"4.2,latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/moodle-websoft9.png"},"catalogCollection":{"items":[{"key":"elearning","title":"在线学习","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"vh3LcEJvgmFxxjl4aiIW9"},"key":"homeassistant","hot":10000,"trademark":"Home Assistant","summary":"智能家居管理平台","overview":"开源家庭自动化,将本地控制和隐私放在首位","websiteurl":"https://www.home-assistant.io/","description":null,"screenshots":[{"id":"c3cf9328-2b17-4af0-94f4-01da118379d5","key":"Dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/homeassistant/homeassistant-gui-websoft9.png"}],"distribution":[{"id":"2f809b3c-7509-4125-842b-28b485c13fc3","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/homeassistant-websoft9.png"},"catalogCollection":{"items":[{"key":"device-management","title":"设备管理","catalogCollection":{"items":[{"key":"iot","title":"物联网"}]}}]}},{"sys":{"id":"4JYZxgYtU7XMN8yrziDHar"},"key":"thingsboard","hot":10000,"trademark":"ThingsBoard","summary":"物联网控制平台","overview":"联网解决方案的设备管理、数据收集、处理和可视化","websiteurl":"https://thingsboard.io/","description":null,"screenshots":[{"id":"c3cf9328-2b17-4af0-94f4-01da118379d5","key":"Dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/thingsboard/thingsboard-gui-websoft9.png"}],"distribution":[{"id":"2f809b3c-7509-4125-842b-28b485c13fc3","key":"Community","value":"latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/thingsboard-websoft9.png"},"catalogCollection":{"items":[{"key":"device-management","title":"设备管理","catalogCollection":{"items":[{"key":"iot","title":"物联网"}]}}]}},{"sys":{"id":"1ypqMYVLwu287CucGuTsOp"},"key":"superset","hot":10000,"trademark":"SuperSet","summary":"开源的商业智能web应用软件,用户可以轻松实现对商业数据进行可视化分析","overview":"Apache Superset 是一个开源的数据探查与可视化平台(曾用名 Panoramix、Caravel ),该工具在可视化、易用性和交互性上非常有特色,用户可以轻松对数据进行可视化分析。","websiteurl":"https://superset.apache.org/","description":"Apache Superset 是一个开源的数据探查与可视化平台(曾用名 Panoramix、Caravel ),该工具在可视化、易用性和交互性上非常有特色,用户可以轻松对数据进行可视化分析。\nSuperset 也是一款企业级商业智能 Web 应用程序。","screenshots":[{"id":"30f35910-7b4a-43b5-b550-8ef814f7be65","key":"superset","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/superset/superset-dash-websoft9.png"}],"distribution":[{"id":"40b4f52e-560c-4e0d-be6d-e5d7352ed4cd","key":"Community","value":"2.1.0"}],"vcpu":2,"memory":8,"storage":3,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/superset-websoft9.png"},"catalogCollectio4100
ch1
n":{"items":[{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"5JW2uL7OFFzXHx8NoaSOBa"},"key":"neo4j","hot":18000,"trademark":"Neo4j","summary":"高性能的 NoSQL 图数据库","overview":"Neo4j 是一个关系信息存储为一等实体的数据库技术,广泛用于知识图谱,社交关系链,商品推荐,IT架构,商品主数据等领域。","websiteurl":"https://neo4j.com/","description":"Neo4j 是一个高性能的 NoSQL 图数据库,用于存储数据关系,它也是一个嵌入式的、基于磁盘的、具备完全的事务特性的Java持久化引擎,它将结构化数据存储在网络上而不是表中。Neo4j也可以被看作是一个高性能的具有成熟数据库所有特性的图引擎。","screenshots":[{"id":"978cd708-6681-47a5-9de5-155ea2f5a2d8","key":"console","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/neo4j/neo4j-console-websoft9.png"},{"id":"1b225c8a-0dfa-4147-8d8d-cae7a066e0ea","key":"sample","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/neo4j/neo4j-sampleonline002-websoft9.png"}],"distribution":[{"id":"85f6b39b-f47f-44d0-8823-0646ebf17fd8","key":"Community","value":"5.7,4.4,latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/neo4j-websoft9.png"},"catalogCollection":{"items":[{"key":"graphdb","title":"图引擎数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"357hiSPldw3fv8yGiRWaXJ"},"key":"mediawiki","hot":18000,"trademark":"MediaWiki","summary":"“维基百科”网站开源的 Wiki 程序","overview":"MediaWiki的作用在于对知识的归档,可用于构建企业/个人知识库。","websiteurl":"https://www.mediawiki.org/wiki/MediaWiki","description":"MediaWiki是面向全球用户的开源wiki程序,采用PHP+MySQL开发。适合用于构建百科、知识库、在线文档、个人笔记等应用。超过数万个站点使用,“维基百科”网站是基于这个软件而构建。MediaWiki的开发得到维基媒体基金会的支持。MediaWiki的大作用在于对知识的归档,可用于构建企业/个人知识库。","screenshots":[{"id":"263d2efe-2fd6-4242-937b-0fc99592ce8f","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mediawiki/MediaWiki_UI.png"},{"id":"34130f1c-15a2-4805-b6f6-2e570c1a01e0","key":"homepage","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mediawiki/mediawiki-homepage-websoft9.png"}],"distribution":[{"id":"8ee67b34-c53c-4f6d-86fc-e19a3c204d40","key":"Community","value":"1.40,latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mediawiki-websoft9.png"},"catalogCollection":{"items":[{"key":"kms","title":"知识管理","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"5V9WsR1qWXR0PGdlwRfqAP"},"key":"netdata","hot":10000,"trademark":"Netdata","summary":"实时可视化的服务器监控系统","overview":"Netdata 是一个面向系统、硬件、容器和应用程序的分布式实时性能和运行状况监控平台,无需配置即可收集数千个有用的指标。","websiteurl":"https://www.netdata.cloud/","description":"Netdata则不同。实时数据收集和可视化。无限的可扩展性融入其设计中。灵活且高度模块化。可立即进行故障排除,无需任何先验知识和准备。可以集成到现有的监控工具链中,如Prometheus和Grafana,Graphite,OpenTSDB,InfluxDB,甚至第三方商业解决方案。","screenshots":[{"id":"b621c299-8c80-4026-8e42-81ccb0890416","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/netdata/netdata-gui-websoft9.png"}],"distribution":[{"id":"7d7cd69a-3350-4a68-a16b-4038aec7bee0","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/netdata-websoft9.png"},"catalogCollection":{"items":[{"key":"logs","title":"4100
ch1
日志管理","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}},{"key":"fullmonitor","title":"全面监控","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}}]}},{"sys":{"id":"TeOjY9cBnmE4HnAFMFQo9"},"key":"redpandaconsole","hot":10000,"trademark":"Redpanda Console","summary":"可视化 Kafka/Redpanda 集群管理工具","overview":"Redpanda Console(以前称为Kowl)是一个Web应用程序,可帮助您轻松管理和调试Kafka / Redpanda工作负载。","websiteurl":"https://redpanda.com/","description":null,"screenshots":[{"id":"65811856-8f3e-465b-99ec-24ac8fdded6a","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redpandaconsole/redpandaconsole-gui-websoft9.png"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/redpandaconsole-websoft9.png"},"catalogCollection":{"items":[{"key":"mq","title":"消息队列","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"DziGezOkxe0F8YPhauBkD"},"key":"zabbix","hot":17000,"trademark":"Zabbix","summary":"开源的企业级监控解决方案","overview":"zabbix 是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。","websiteurl":"GNU ","description":"zabbix 是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。它能监视各种网络参数,保证服务器系统的安全运营;并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题。\nzabbix由2部分构成,zabbix server与可选组件zabbix agent。\nzabbix server可以通过SNMP,zabbix agent,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux,Solaris,HP-UX,AIX,Free BSD,Open BSD,OS X等平台上。\n","screenshots":[{"id":"79c30387-668a-4527-8288-26e5fc9de523","key":"zabbix","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/zabbix/zabbix-gui-websoft9.png"}],"distribution":[{"id":"7e222c68-6cf5-4722-b0dd-50dc0e7d0f8b","key":"Community","value":"6.2,6.0,5.4"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/zabbix-websoft9.png"},"catalogCollection":{"items":[{"key":"fullmonitor","title":"全面监控","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}}]}},{"sys":{"id":"31GoMqbJSIs6c1DixjBKa8"},"key":"webmin","hot":10000,"trademark":"Webmin","summary":"一款流行的 Linux 可视化面板管理工具","overview":"Webmin 是流行的 Linux 可视化面板管理工具,免费开源,可轻松管理文件、配置域名、修改配置文件、备份数据等。","websiteurl":"https://www.webmin.com/","description":"Webmin 是一个基于 Web 的 Unix 系统管理界面。 使用任何现代浏览器,您可以设置用户帐户、Apache、DNS、文件共享等等。 Webmin 消除了手动编辑 Unix 配置文件(如 /etc/passwd)的需要,并允许您从控制台或远程管理系统。 有关 Webmin 中内置的所有功能的列表,请参阅标准模块页面。","screenshots":[{"id":"277a0bb5-1033-4541-8844-61c935841fb3","key":"webmin","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/webmin/webmin-dashboard-websoft9.png"}],"distribution":[{"id":"825fad31-9a3e-45e6-8000-56f27760f1b1","key":"Community","value":"1.984"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/webmin-websoft9.png"},"catalogCollection":{"items":[{"key":"itsm","title":"云设施监控","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}}]}},{"sys":{"id":"4dyFaL0wj9kr5WE9akRHkg"},"key":"ansible","hot":4000,"trademark":"Ansible","summary":"一个非常简单的IT自动化平台","overview":"Ansible是一个非常简单的IT自动化平台,它使您的应用程序�4100
ch1
��系统更易于部署和维护。","websiteurl":"https://www.ansible.com/","description":"Ansible是一个非常简单的IT自动化平台,它使您的应用程序和系统更易于部署和维护。Ansible也是唯一可以跨整个IT团队(从系统和网络管理员到开发人员和经理)使用的自动化语言。自动化从代码部署到网络配置再到云管理的所有内容,语言接近纯英语,使用SSH,无需在远程系统上安装代理。","screenshots":[{"id":"41e835a7-0d5c-4555-9fcf-42f8f113d7cd","key":"plateform","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/ansible/redhat-automation-platform_content-collections.png"},{"id":"4cef4620-f6af-4e5f-89c1-552c9616ec9b","key":"structure","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/ansible/ansible-structure-websoft9.png"}],"distribution":[{"id":"4f816088-de51-430b-8222-ec565d62fb29","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/ansible-websoft9.png"},"catalogCollection":{"items":[{"key":"rpa","title":"流程机器人","catalogCollection":{"items":[{"key":"automation","title":"自动化"}]}}]}},{"sys":{"id":"7LvmB9OfByb4n6DbghrKLI"},"key":"haproxy","hot":null,"trademark":"HAProxy","summary":"一个提供高可用性、负载均衡,以及基于 TCP 和 HTTP 的应用程序代理的解决方案","overview":"提供高可用性、负载均衡,以及基于 TCP 和 HTTP 的应用程序代理,适用于负载特大的web站点。","websiteurl":"http://www.haproxy.org/","description":"HAProxy是一个使用C语言编写的自由及开放源代码软件,其提供高可用性、负载均衡,以及基于 TCP 和 HTTP 的应用程序代理。","screenshots":[{"id":"8a49ba93-e5a5-4b3e-a368-3874c1453e2e","key":"configuration","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/haproxy/HAProxy-configuration.png"},{"id":"b2d8807a-2543-4b9a-bc2b-ae87e1d471ce","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/haproxy/haproxy-statsgui-websoft9.png"}],"distribution":[{"id":"6185cfff-83f1-48a3-b149-37f87d427c6c","key":"Community","value":"2.7,2.6,2.5,2.4,2.3,2.3,2.0"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/haproxy-websoft9.png"},"catalogCollection":{"items":[{"key":"balancer","title":"负载均衡 ","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"3Y01sTsuCfHLFS2ZN7WinT"},"key":"nextcloud","hot":null,"trademark":"Nextcloud ","summary":"用于自建私有网盘的云存储开源软件,功能类似百度云盘","overview":"Nextcloud是一款用于自建私有网盘的云存储开源软件,采用PHP+MySQL开发,功能类似百度云盘,提供了PC、IOS和Android三个同步客户端支持多种设备访问","websiteurl":"https://nextcloud.com/","description":"Nextcloud是一款用于自建私有网盘的云存储开源软件,采用PHP+MySQL开发,功能类似百度云盘,提供了PC、IOS和Android三个同步客户端支持多种设备访问,用户可以很方便地与服务器上存储的文件、日程安排、通讯录、书签等重要数据保持同步,还支持其他同步来源:Amazon S3、Dropbox、FTP、Google Drive、OpenStack Object Storage、SMB、WebDAV、SFTP。","screenshots":[{"id":"000b8b47-edaf-4764-a98b-210acb572c9f","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/nextcloud/nextcloud-gui-websoft9.png"},{"id":"59011a31-302a-4ee4-a79b-0390f71a11b5","key":"main","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/nextcloud/nextcloud-main-websoft9.png"}],"distribution":[{"id":"91bb3617-f4e2-49b3-b474-6dba19fb95e8","key":"Community","value":"26.0.1"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/nextcloud-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"54100
ch1
13azFysibCHjwJDtdeQAz"},"key":"alfresco","hot":null,"trademark":"Alfresco","summary":"企业内容管理系统","overview":"Alfresco提供企业内容管理解决方案,使客户能够跨云,跨移动设备,并可以在混合式部署和内部部署环境中保留、管理和共享文档,处理分析文件和流程。","websiteurl":"https://www.alfresco.com/","description":"Alfresco成立于2005年,总部位于加州圣马特奥和英国Maidenhead,是一家企业开源软件公司,专注于通过推动企业内容管理和业务流程管理的融合,快速,无缝和智能地实现企业内部多变复杂的业务流程。 Alfresco提供企业内容管理解决方案,使客户能够跨云,跨移动设备,并可以在混合式部署和内部部署环境中保留、管理和共享文档,处理分析文件和流程。 Alfresco也是全球化的企业内容管理(ECM)开放平台提供商,其创新型软件为全球195个国家中不同行业和不同领域的1100万使用者提供支持。\n\n版权说明\n\n本镜像的收费是针对于镜像的预装环境,不代表提供了Alfresco的版权许可。此Alfresco Community Edition镜像遵循LGPLv3 开源协议制作,请用户遵循协议使用。若对Alfresco商业版本和官方专业服务有需求,请直接联系Alfresco中国\n","screenshots":[{"id":"b9d6c1c0-58f2-4db6-bc2f-d8b2358248b5","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/alfresco/alfresco-arcgui-websoft9.png"},{"id":"211b1e11-18da-4fde-b728-bbc249ae0e1e","key":"dashboard","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/alfresco/alfresco-adminui-websoft9.png"},{"id":"8a905612-8bf2-4789-9268-25b7b5878e64","key":"mydocs","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/alfresco/alfresco-mydocs-websoft9.png"}],"distribution":[{"id":"f0e2e7b0-45b4-4efc-a621-522b4fd2823f","key":"Community","value":"7.4.0"}],"vcpu":2,"memory":4,"storage":2,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/alfresco-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"4QajctY5yDlOTxgWQXhZDX"},"key":"clamav","hot":10000,"trademark":"ClamAV","summary":"开源病毒扫描与检测","overview":"ClamAV是一个开源的防病毒引擎,用于检测木马,病毒,恶意软件和其他 恶意威胁。","websiteurl":"https://ckan.org/","description":"ClamAV 是一个开源 (GPLv2) 防病毒工具包,专为邮件网关上的电子邮件扫描而设计。它提供了许多实用程序,包括灵活且可扩展的多线程守护程序、命令行扫描程序和用于自动数据库更新的高级工具。该软件包的核心是以共享库的形式提供的防病毒引擎。","screenshots":[{"id":"65811856-8f3e-465b-99ec-24ac8fdded6a","key":"architecture","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/clamav/clamav-arch-websoft9.webp"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/clamav-websoft9.png"},"catalogCollection":{"items":[{"key":"security-detection","title":"扫描监测","catalogCollection":{"items":[{"key":"security","title":"IT 安全"}]}}]}},{"sys":{"id":"6al61vicJzZ8fKMfXDsAMn"},"key":"teleport","hot":10000,"trademark":"Teleport","summary":"开源堡垒机","overview":"The open source access platform used by DevSecOps teams for SSH, Kubernetes, databases, internal web applications and Windows.","websiteurl":"https://goteleport.com/","description":"Teleport通过依靠生物识别和机器身份来防止网络钓鱼,使用零信任架构阻止攻击者透视,与你拥有的一切兼容,作为云服务或自托管选项提供,并且不会妨碍工程师的生产力。","screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"控制面板","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/teleport/teleport-gu4100
ch1
i-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/teleport-websoft9.png"},"catalogCollection":{"items":[{"key":"pam","title":"堡垒机","catalogCollection":{"items":[{"key":"security","title":"IT 安全"}]}}]}},{"sys":{"id":"254PDKCtspEBLiHgAghnbN"},"key":"nextterminal","hot":10000,"trademark":"Next Terminal","summary":"简单好用安全的开源交互审计系统","overview":"Next Terminal 用真实身份取代了传统账号,为连接到基础设施的每位工程师提供防钓鱼的零信任访问方案。","websiteurl":"https://next-terminal.typesafe.cn/","description":"Next Terminal是一个简单好用安全的开源交互审计系统,支持RDP、SSH、VNC、Telnet、Kubernetes协议。\n\n目前支持的功能有:\n\n- 授权凭证管理\n- 资产管理(支持RDP、SSH、VNC、TELNET协议)\n- 指令管理\n- 批量执行命令\n- 在线会话管理(监控、强制断开)\n- 离线会话管理(查看录屏)\n- 双因素认证\n- 资产标签\n- 资产授权\n- 多用户&用户分组\n- 计划任务\n- ssh server\n- 登录策略\n- 系统监控","screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"控制面板","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/nexterminal/nexterminal-gui-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/nextterminal-websoft9.png"},"catalogCollection":{"items":[{"key":"pam","title":"堡垒机","catalogCollection":{"items":[{"key":"security","title":"IT 安全"}]}}]}},{"sys":{"id":"znIjwUaSYDrYlPoNFOb2g"},"key":"kong","hot":10000,"trademark":"Kong","summary":"云原生 API 网关 ","overview":"使用 Kong(最快的云原生 API 平台)构建令人愉悦的客户体验并释放开发人员的工作效率。","websiteurl":"https://konghq.com/","description":null,"screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kong/kong-gui-websoft9.webp"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/kong-websoft9.png"},"catalogCollection":{"items":[{"key":"api","title":"API 网关","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"7iIWGpnDd628BHd3aKlPLF"},"key":"vault","hot":10000,"trademark":"HashiCorp Vault","summary":"密码与敏感信息保护系统","overview":"Secure, store and tightly control access to tokens, passwords, certificates, encryption keys for protecting secrets and other sensitive data using a UI, CLI, or HTTP API.","websiteurl":"https://www.vaultproject.io/","description":"Vault secures, stores, and tightly controls access to tokens, passwords, certificates, API keys, and other secrets in modern computing. Vault handles leasing, key revocation, key rolling, auditing, and provides secrets as a service through a unified API.","screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"Console","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/vault/vault-gui-websoft9.jpeg"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/vault-websoft9.png"},"catalogCollection":{"items":[{"key":"access-control","title":"访问控制","catalogCollection":{"items":[{"key":"security","title":"IT 安全"}]}},{"key":"key-management","title":"秘钥管理","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"34uArhoEUWfQ66k25kWBRN"},"key":"onlyofficedocs","hot":null,"trademark":"Onlyoffice-Docs","summary":"为网盘系统提供文档在线�4100
ch1
��辑与预览服务的中间件","overview":"ONLYOFFICE Document Server是一个在线文档编辑和预览系统,可供第三方网盘软件或开发者实现文档的在线编辑和预览。","websiteurl":"https://www.onlyoffice.com/","description":"ONLYOFFICE Document Server (6.0版本开始改称为ONLYOFFICE Docs) 是一个在线文档编辑和预览中间件系统,运行本镜像后,您便可以给第三方网盘软件 (ownCloud, Seafile等)或其他开发者实现Office文档的在线编辑和预览。","screenshots":[{"id":"e516e551-f43f-4d58-a8b6-1788a6f955a8","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/onlyoffice/onlyofficedocs-gui-websoft9.png"},{"id":"fbc96236-2a1d-47eb-8c62-902c4d58968a","key":"document","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/onlyofficedocs/onlyofficedocs-saveas-websoft9.png"}],"distribution":[{"id":"af9c81e4-0487-449f-87d9-e778faf0aef6","key":"Community","value":"7.3"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/onlyofficedocs-websoft9.png"},"catalogCollection":{"items":[{"key":"docs","title":"文档服务","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"1W6Tc4mrq2AvdkFbqFpTaD"},"key":"kafka","hot":null,"trademark":"Kafka","summary":"由Apache软件基金会开发的一个开源流处理平台,由Scala和Java编写","overview":"Kafka 是一种高吞吐量的分布式发布订阅消息系统,可以处理消费者规模的网站中的所有动作流数据。","websiteurl":"https://kafka.apache.org/","description":"Kafka是由Apache软件基金会开发的一个开源流处理平台,由Scala和Java编写。Kafka是一种高吞吐量的分布式发布订阅消息系统,它可以处理消费者规模的网站中的所有动作流数据。","screenshots":[{"id":"569d8991-2013-400d-9330-9f173c7954df","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/kafka/kafka-gui-websoft9.png"},{"id":"3170296d-4c9e-49e4-b649-c432abea5b3d","key":"cmak","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kafka/kafka-addcluster001-websoft9.png"}],"distribution":[{"id":"65f525c9-bd50-4e7c-992e-0ede29aa7499","key":"Community","value":"3.2,3.0,2.8,2.7,2.6,2.5,2.4,2.3,2.2,2.1,2.0,1.1,1.0"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/kafka-websoft9.png"},"catalogCollection":{"items":[{"key":"mq","title":"消息队列","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"tpIWDZm4x32hohSStVet5"},"key":"activemq","hot":null,"trademark":"ActiveMQ","summary":"Apache出品的开源消息总线","overview":"Apache ActiveMQ 是老牌的开源消息总线,完全支持 JMS1.1 和 J2EE 1.4 规范,它支持多种语言和协议编写客户端。","websiteurl":"https://activemq.apache.org/","description":"ActiveMQ是Apache出品的开源消息总线,完全支持JMS1.1和J2EE 1.4规范(持久化,XA消息,事务),尽管JMS规范出台已经是很久的事情了,但是JMS在当今的J2EE应用中间仍然扮演着特殊的地位。ActiveMQ支持多种语言和协议编写客户端。语言包括:Java, C, C++, C#, Ruby, Perl, Python,PHP。应用协议包括:OpenWire, Stomp REST, WS Notification, XMPP, AMQP等。\n","screenshots":[{"id":"6cc22074-6efa-4eae-a6cc-193e43381556","key":"login","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/activemq/activemq-login-websoft9.png"},{"id":"1bcef493-c1ef-448d-9105-727ab185d825","key":"consol","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/activemq/activemq-logined-websoft9.png"}],"distribution":[{"id":"e6424580-d620-4595-8d5a-6760ebe9573f","key":"Community","value":"5.18.2-jre17-rockylinux8"},{"id":"dc26afc3-6e11-4970-ab84-241b38000399","key":"ARTEMIS","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/activemq-websoft9.png"},"catalogCollection":{"items":[{"key":"mq","title":"消息队列","ca4100
ch1
talogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"6wAhyoJW83HLqPrxADouUw"},"key":"rabbitmq","hot":null,"trademark":"RabbitMQ","summary":"流行的开源消息队列系统","overview":"流行的开源消息队列系统,用erlang语言开发,用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗","websiteurl":"https://www.rabbitmq.com/","description":"RabbitMQ是流行的开源消息队列系统,用erlang语言开,是AMQP(高级消息队列协议)的标准实现。用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。","screenshots":[{"id":"d9232e11-ecb7-44e6-81a4-c4732ec39cae","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/rabbitmq/rabbitmq-gui-websoft9.png"},{"id":"50a85987-56c2-49d7-9090-52b0884d3a92","key":"password","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/rabbitmq/rabbitmq-pw-websoft9.png"}],"distribution":[{"id":"18eee213-3677-46ca-9447-b9693dbea479","key":"Community","value":"3.12"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/rabbitmq-websoft9.png"},"catalogCollection":{"items":[{"key":"mq","title":"消息队列","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"3sNiEy6t4XplQ7CNSd2TaA"},"key":"minio","hot":10000,"trademark":"MinIO","summary":"云原生高性能对象存储","overview":"MinIO 是一种高性能、兼容 S3 的对象存储。它专为大规模 AI/ML、数据湖和数据库工作负载而构建。","websiteurl":"https://min.io/","description":"它在本地和任何云(公共或私有云)上运行,从数据中心到边缘。","screenshots":[{"id":"59011a31-302a-4ee4-a79b-0390f71a11b5","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/minio/minio-gui-websoft9.png"}],"distribution":[{"id":"91bb3617-f4e2-49b3-b474-6dba19fb95e8","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/minio-websoft9.png"},"catalogCollection":{"items":[{"key":"oss","title":"对象存储","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"1gZbl42lGLwFamyxuCS592"},"key":"apache","hot":10000,"trademark":"Apache HTTP Server","summary":"HTTP 服务器软件","overview":"Apache HTTP Server 是一个流行的开源 HTTP 服务器,为应用程序提供 HTTP 服务。","websiteurl":"https://httpd.apache.org/","description":"Apache HTTP Server 是一个开源的 HTTP 服务器项目,它旨在为现代操作系统(包括 UNIX 和 Windows)开发和维护一个 HTTP 服务器。该项目的目标是提供一个安全、高效、可扩展的服务器,以提供与当前 HTTP 标准同步的 HTTP 服务。","screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"architecture","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/linux/apachehttp-architecture.gif"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/apache-websoft9.png"},"catalogCollection":{"items":[{"key":"httpserver","title":"HTTP 服务器","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"4q4B0lXUAyf6PNWH0eAJFM"},"key":"caddy","hot":10000,"trademark":"Caddy","summary":"自动 HTTPS 开源 Web 服务器","overview":"Caddy 是一个强大且可扩展的 HTTP/2 Web 服务器,它默认使用 HTTPS 并自动获取和更新 TLS 证书","websiteurl":"https://caddyserver.com/","description":"Caddy 简化了您的基础架构。它负责 TLS 证书续订、OCSP 装订、静态文件服务、反向代理、Kubernetes 入口等。","screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"architecture","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/caddy/caddy-arch-webso4100
ch1
ft9.svg"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":""}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/caddy-websoft9.png"},"catalogCollection":{"items":[{"key":"httpserver","title":"HTTP 服务器","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"45hxEcPOdTYtzBxI9nAjyD"},"key":"traefik","hot":10000,"trademark":"Traefik Proxy","summary":"云原生应用代理服务器软件","overview":"Traefik(发音流量)是一种现代 HTTP 反向代理和负载均衡器,可轻松部署微服务","websiteurl":"https://traefik.io/traefik/","description":"Traefik 与您现有的基础设施组件(Docker、Swarm mode、Kubernetes、Consul、Etcd、Rancher v2、Amazon ECS 等)集成,并自动动态地进行自我配置。 将 Traefik 指向业务流程协调程序应该是唯一需要的配置步骤。","screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"Dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/traefik/traefik-gui-websoft9.webp"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/traefik-websoft9.png"},"catalogCollection":{"items":[{"key":"httpserver","title":"HTTP 服务器","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}},{"key":"application-gateway","title":"应用网关","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"ZUbCJTQ93Yc3El4LSuBlk"},"key":"codeserver","hot":null,"trademark":"code-server","summary":"浏览器版本的 VS Code","overview":"code-server 是Web 版 VS Code,后端运行在服务器中,开发者基于浏览器运行 IDE。","websiteurl":"https://coder.com/","description":"code server 是一个由第三方公司开发的浏览器版本的 VS Code,可以直接通过浏览器进行开发,由于后端运行在服务器中,其运行效率高的同时又非常便捷。","screenshots":[{"id":"ceea3b6c-505c-42cd-9f01-6bbaddbd5187","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/codeserver/codeserver-consolegui-websoft9.png"},{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/codeserver/codeserver-login-websoft9.png"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/codeserver-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}},{"key":"ide","title":"在线 IDE","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}}]}},{"sys":{"id":"6wPxkFRh15mMZDUpcE6S1k"},"key":"jupyterhub","hot":10000,"trademark":"JupyterHub","summary":"多用户版的 Jupyter notebooks","overview":"JupyterHub将笔记本的强大功能带给用户组。它给 用户无需负担即可访问计算环境和资源 具有安装和维护任务的用户。","websiteurl":"https://jupyter.org/","description":"用户 - 包括学生, 研究人员和数据科学家 - 可以自己完成工作 共享资源上的工作区,可由系统管理员高效管理。\n\nJupyterHub在云中或您自己的硬件上运行,并使之成为可能 为世界上的任何用户提供预配置的数据科学环境。 它是可定制和可扩展的,适用于小型和大型团队, 学术课程和大型基础设施。","screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"Notebook","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/jupyterhub/jupyterhub-gui-websoft9.webp"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websof4100
ch1
t9/logo/product/jupyterhub-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}},{"key":"ide","title":"在线 IDE","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}}]}},{"sys":{"id":"4zEpdAYKbgz98rinNVqxTO"},"key":"theia","hot":10000,"trademark":"Eclipse Theia","summary":"云 IDE 平台","overview":"Eclipse Theia是一个可扩展的框架,用于开发具有最先进Web技术的成熟的多语言云和桌面IDE和工具。","websiteurl":"https://theia-ide.org/","description":null,"screenshots":[{"id":"ceea3b6c-505c-42cd-9f01-6bbaddbd5187","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/theia/theia-gui-websoft9.jpg"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/theia-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}},{"key":"ide","title":"在线 IDE","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}}]}},{"sys":{"id":"1guoWgn8Btj9kcbxYFQnlx"},"key":"gitea","hot":10000,"trademark":"Gitea","summary":"轻量级的 DevOps 平台软件","overview":"Gitea 是一个轻量级的 DevOps 平台软件。从开发计划到产品成型的整个软件生命周期,他都能够高效而轻松的帮助团队和开发者。","websiteurl":"https://about.gitea.cn/","description":null,"screenshots":[{"id":"78475d9f-cd3a-484d-a201-046ea455908f","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/gitea/gitea-gui-websoft9.png"}],"distribution":[{"id":"ff8ceafb-dd7f-4dfc-b523-f13edefa88a7","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/gitea-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}},{"key":"pipeline","title":"流水线","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"automation","title":"自动化"}]}}]}},{"sys":{"id":"3S6rjYwRUlG1wEfHlBAUsT"},"key":"n8n","hot":10000,"trademark":"n8n","summary":"工作流与任务自动化","overview":"n8n 可以帮助用户在没有任何技术背景下,实现流程与任务自动化。同时,预制300+个系统集成模板,很方便的供客户连接多个软件","websiteurl":"https://n8n.io","description":"n8n allows you to build flexible workflows focused on deep data integration. And with sharable templates and a user-friendly UI, the less technical people on your team can collaborate on them too. Unlike other tools, complexity is not a limitation. So you can build whatever you want — without stressing over budget.","screenshots":[{"id":"b8f4c8aa-fa2c-49dd-a7ad-b64e18325736","key":"process","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/n8n/n8n-gui-websoft9.png"}],"distribution":[{"id":"cb1193c2-6668-4c37-9f14-309cbf2e616d","key":"Community","value":"0.227.1"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/n8n-websoft9.png"},"catalogCollection":{"items":[{"key":"workflowauto","title":"工作流","catalogCollection":{"items":[{"key":"automation","title":"自动化"}]}}]}},{"sys":{"id":"3hhszKLEOur4obfBqAGI8u"},"key":"jenkins","hot":null,"trademark":"Jenkins","summary":"热门的开源持续集成(CI&CD)软件","overview":"Jenkins是一款开源 CI&CD 软件,用于自动化各种任务,包括构建、测试和部署软件。","websiteurl":"https://www.jenkins.io/","description":"Jenkins是一款基于Java语言开发的开源持续集成(CI&CD)软件, 提供超过1000个插件来支持构建、部署、自动化, 满足各种项目的 DevOps 需要","screenshots":[{"id":"3c08da17-38d7-46d1-815b-20981a6e4546"4100
ch1
,"key":"devops","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/jenkins/jenkins_is_the_hub_CD_Devops.png"},{"id":"3c5f8afa-0618-4999-be55-2ee0d39bd7e2","key":"wizard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/jenkins/jenkins-wizard3-websoft9.png"}],"distribution":[{"id":"21b7b8c9-9e78-4bd1-87ab-3656e188d206","key":"Community","value":"2.406"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/jenkins-websoft9.png"},"catalogCollection":{"items":[{"key":"pipeline","title":"流水线","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"automation","title":"自动化"}]}},{"key":"automation","title":"自动化","catalogCollection":{"items":[{"key":"product","title":"产品"}]}}]}},{"sys":{"id":"5iI41E1ctdn7XBuv5g1oqU"},"key":"gitlab","hot":null,"trademark":"GitLab","summary":"一个平台覆盖 DevSecOps 全流程","overview":"GitLab 是一个完整的 DevOps 平台软件,提供开箱即用的完整 CI/CD 工具链。","websiteurl":"https://about.gitlab.com/","description":"GitLab起初是一个开源源码仓库管理项目,旨在帮助团队协作进行软件开发。通过以业界领先的速度提供新功能,GitLab 现在为软件开发和运营生命周期提供了一个完整的 DevOps 方案。GitLab 功能包括:项目管理,计划,创建,验证,打包,发布,配置,监视和保护应用程序所需的一切。","screenshots":[{"id":"473ff1c1-1937-4072-a5c0-e6f67a623bbe","key":"devops","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/gitlab/gitlab-devopsall-websoft9.png"},{"id":"86050eeb-be18-4e4b-b990-dd83bf0f7d3c","key":"adminpanel","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/gitlab/gitlab-adminpanel-websoft9.png"}],"distribution":[{"id":"e370a442-395b-4b71-bec4-4ead6baf29d1","key":"Community","value":"16.0.7-ce.0"},{"id":"6dcc63e5-da31-49f9-85cc-ed3b584da7cb","key":"Enterprise","value":"15.9"},{"id":"21f7b05a-68ac-4c37-bec8-6cfd13bb17c3","key":"Solution","value":"jenkins"},{"id":"643d66f6-4e41-4206-a5fd-8d1ccfe9e98a","key":"极狐","value":"15.9"}],"vcpu":2,"memory":8,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/gitlab-websoft9.png"},"catalogCollection":{"items":[{"key":"repository","title":"源码仓库","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"}]}},{"key":"pipeline","title":"流水线","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"automation","title":"自动化"}]}}]}},{"sys":{"id":"6mpkB3VuBB0JkY1xrWwt0F"},"key":"sqlserver","hot":10000,"trademark":"SQL Server Express","summary":"SQL Server Express 是 Microsoft 官方 SQL Server 免费发行版","overview":"SQL Server Express 是 Microsoft 官方 SQL Server 免费发行版。易于部署并可无偿获取并可以随应用程序免费再分发。","websiteurl":"https://www.sqlserver.com/","description":"SQL Server Express 是 Microsoft 官方 SQL Server 免费发行版。易于部署并可无偿获取并可以随应用程序免费再分发。如果需要更多的高级数据库功能,可将 SQL Server Express 无缝升级到 SQL Server 商业版本。","screenshots":[{"id":"5f6b81f3-bfa7-4cb4-acc5-c96f53d86bd1","key":"sqlserver","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/sqlserver/sqlserver-getsqlserver-websoft9.png"}],"distribution":[{"id":"210b227c-241c-4ef3-9c48-6d0dbbb8cfd3","key":"Community","value":"2022,2019,2017"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/sqlserver-websoft9.png"},"catalogCollection":{"items":[{"key":"rds","title":"关系型数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"3sGmWQDMeO7NzfIkUWJSW6"},"key":"mysql","hot":30000,"trademark":"MySQL","summary":"流行的关系型数据库管理系统","overview":"MySQL 是流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是出色的 RDBMS (关系数据库管理系统) 应用软件。","w4100
ch1
ebsiteurl":"https://www.mysql.com/","description":"MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,目前属于Oracle旗下产品。MySQL 是流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是出色的 RDBMS (关系数据库管理系统) 应用软件。\n","screenshots":[{"id":"27c0b349-0d58-4511-9aea-67171accb67b","key":"dbgui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mysql/mysql-dbgui-websoft9.png"},{"id":"d9564740-383e-4e83-916b-3e7b32f6d7ce","key":"add db","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mysql/phpmyadmin-adddb-websoft9.png"}],"distribution":[{"id":"a9bb1ac6-d960-44b5-a3b7-347dd6949419","key":"Community","value":"8.0,5.7,5.6,5.5"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mysql-websoft9.png"},"catalogCollection":{"items":[{"key":"rds","title":"关系型数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"66BV2KlprR5FZDlAX0eJyp"},"key":"mariadb","hot":19000,"trademark":"MariaDB","summary":"MySQL的一个分支数据库管理系统","overview":"MariaDB 数据库,是一个企业级产品。它基于 Docker 架构,内置可以通过本地浏览器访问的可视化管理工具 phpMyAdmin,满足企业微服务架构的设计思想。 ","websiteurl":"https://mariadb.org/","description":"云原生 MariaDB 数据库,是一个企业级产品。它基于 Docker 架构,内置可以通过本地浏览器访问的可视化管理工具 phpMyAdmin,满足企业微服务架构的设计思想。","screenshots":[{"id":"37b1c4e5-eca8-44af-b22d-6b53394ab6b7","key":"gui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/mariadb/mariadb-gui-websoft9.png"},{"id":"547b71e4-25eb-46c1-b3a3-881ca7fda0fe","key":"structure","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mariadb/mariadb-structure-websoft9.png"}],"distribution":[{"id":"166b53da-d091-4cda-9f08-77f0058fa1a0","key":"Community","value":"10.11,10.10,10.9,10.8,10.7,10.6,10.5,10.4,10.3"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mariadb-websoft9.png"},"catalogCollection":{"items":[{"key":"rds","title":"关系型数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"54EraiDW7JIC5lGksnBC4n"},"key":"memcached","hot":null,"trademark":"memcached","summary":"一个自由开源的,高性能,分布式内存对象缓存系统","overview":"Memcached是一个自由开源的,高性能,分布式内存对象缓存系统。是一种基于内存的key-value存储,用来存储小块的任意数据(字符串、对象)。","websiteurl":"https://www.memcached.org/","description":"Memcached是一个自由开源的,高性能,分布式内存对象缓存系统。是一种基于内存的key-value存储,用来存储小块的任意数据(字符串、对象)。这些数据可以是数据库调用、API调用或者是页面渲染的结果。","screenshots":[{"id":"b05750c3-16b7-4150-9e37-48af959d0df3","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/memcached/memcached-gui-websoft9.png"}],"distribution":[{"id":"d0dc5b7c-4d67-4bbd-862a-e76371002980","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/memcached-websoft9.png"},"catalogCollection":{"items":[{"key":"memorydb","title":"缓存数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"7COwHP4WylYT8WELfmUEfB"},"key":"postgresql","hot":null,"trademark":"PostgreSQL","summary":"面向企业复杂SQL处理的开源数据库","overview":"PostgreSQL被业界誉为“超先进的开源数据库”,面向企业复杂SQL处理的OLTP在线事务处理场景,支持NoSQL数据类型(JSON/XML/hstore)、支持GIS地理信息处理。","websiteurl":"https://www.postgresql.org/","description":"PostgreSQL被业界誉为“超先进的开源数据库”,面�4100
ch1
�企业复杂SQL处理的OLTP在线事务处理场景,支持NoSQL数据类型(JSON/XML/hstore)、支持GIS地理信息处理。","screenshots":[{"id":"6ffbf6e0-d0df-49ec-8eab-97c30495bb4c","key":"pgadmin","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/postgresql/pgadmin4-websoft9.png"},{"id":"7c787dda-6a6b-457a-abd1-ba5394830134","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/postgresql/pgadmin-loginui-websoft9.png"}],"distribution":[{"id":"f5b8151a-e184-41ba-a5d6-9ae6e0d57636","key":"Community","value":"14,13,12,11,10,9.6,9.4"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/postgresql-websoft9.png"},"catalogCollection":{"items":[{"key":"rds","title":"关系型数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"5SKyMxm6hnrIGruwyBorK0"},"key":"dgraph","hot":18000,"trademark":"Dgraph","summary":"高性能的 NoSQL 图数据库","overview":"在分布式图形数据库上构建为容错能力,为开发人员提供了快速构建和大规模建模应用程序的工具","websiteurl":"https://dgraph.io/","description":"- GraphQL Native\n- 任何查询都可以成为终结点\n- 默认情况下分片之间的一致性\n- 横向扩展本机体系结构\n- 无限制的联接,不影响性能\n- 同步复制","screenshots":[{"id":"978cd708-6681-47a5-9de5-155ea2f5a2d8","key":"architecture","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/dgraph/dgraph-gui-websoft9.svg"}],"distribution":[{"id":"85f6b39b-f47f-44d0-8823-0646ebf17fd8","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/dgraph-websoft9.png"},"catalogCollection":{"items":[{"key":"graphdb","title":"图引擎数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"3SdTBCmCeczDJZzFV2Hmju"},"key":"influxdb","hot":10000,"trademark":"influxdb","summary":"在单个专用数据库中管理所有类型的时间序列数据。","overview":"InfluxDB是一个专门为时间序列数据构建的强大数据库。它使处理此类数据变得无缝而简单。","websiteurl":"https://www.influxdata.com/","description":"时序应用的领先平台。致力于帮助我们的客户构建很酷的东西,在更短的时间内改变他们的业务 - 我们称之为“令人敬畏的时间”。知名的客户包括思科、IBM 和 PayPal 在内的组织的开发人员使用时间戳数据构建实时物联网、分析和云应用程序。","screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"arch","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/influxdb/influxdb-gui-websoft9.svg"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/influxdb-websoft9.png"},"catalogCollection":{"items":[{"key":"timedbs","title":"时序数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}},{"key":"device-management","title":"设备管理","catalogCollection":{"items":[{"key":"iot","title":"物联网"}]}}]}},{"sys":{"id":"1TOTqO5WtTyRCStzd9GeVG"},"key":"oracle","hot":null,"trademark":"Oracle Database","summary":"Oracle Database 免费版","overview":"Oracle 数据库,是一个企业级产品。内置可以通过本地浏览器访问的可视化管理工具 Oracle EM 和 CloudBeaver,满足企业微服务架构的设计思想。","websiteurl":"https://www.oracle.com/","description":"由 Websoft9 提供的云原生 Oracle 数据库,是一个企业级产品。它基于 Docker 架构,内置可以通过本地浏览器访问的可视化管理工具 Oracle EM 和 CloudBeaver,满足企业微服务架构的设计思想。","screenshots":[{"id":"b3d826f4-cce1-496a-96a4-374af8c917c0","key":"gui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/oracle/oracle-database-1024x410.jpg"},{"id":"ea21931b-ae2a-4ade-9480-025f8879fe91","ke4100
ch1
y":"emlogin","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/oracle/oracle-emlogin-websoft9.png"},{"id":"8e1ed51b-5c9c-4650-8de7-846cfef342c7","key":"emgui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/oracle/oracle-emgui-websoft9.png"}],"distribution":[{"id":"5c5b6fbf-6ddc-4a60-802a-91000b1ea491","key":"Express","value":"21c,18c"},{"id":"6d79f4c8-a69f-4f80-bcee-1b2be6aa05c3","key":"Enterprise","value":"21c,19c,12c"}],"vcpu":2,"memory":8,"storage":40,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/oracle-websoft9.png"},"catalogCollection":{"items":[{"key":"rds","title":"关系型数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"ZVwmCFfIfNBzTwT9SWAFW"},"key":"phpmyadmin","hot":9000,"trademark":"phpMyAdmin","summary":"MySQL/MariaDB 可视化管理工具","overview":"phpMyAdmin 是一个开源的 Web 可视化管理工具,支持 MySQL/MariaDB","websiteurl":"https://www.phpmyadmin.net/","description":"phpMyAdmin 是一个开源的 Web 可视化管理工具,支持 MySQL/MariaDB。它支持常见的数据库管理功能:管理数据库,管理表,增加行业,修改字段,导入导出以及运行 SQL 命令等。","screenshots":[{"id":"2763f01d-181f-4d77-85ce-565dc68df348","key":"创建数据库","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mysql/phpmyadmin-adddb-websoft9.png"},{"id":"655168da-56fa-449b-a48e-9b8a00cdc621","key":"修改密码","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/mysql/phpmyadmin-modifypw-websoft9.png"}],"distribution":[{"id":"fd254ee7-ab78-4eec-a159-01aea39553be","key":"Community","value":"5.2.1"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/phpmyadmin-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"71HqrH85UckvBFC2kWsHCp"},"key":"mongocompass","hot":10000,"trademark":"MongoDB Compass","summary":"MongoDB 官方可视化工具","overview":"Compass is a free interactive tool for querying, optimizing, and analyzing your MongoDB data. Get key insights, drag and drop to build pipelines, and more.","websiteurl":"https://www.mongodb.com/products/compass","description":"在Compass中轻松处理您的数据,Compass是由MongoDB构建的GUI。Compass 在单个集中式界面中提供从模式分析到索引优化再到聚合管道的所有内容。","screenshots":[{"id":"551d42ad-c973-4c75-a65f-bc15c15b636f","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mongodb/mongodbcompass001-websoft9.png"}],"distribution":[{"id":"bc136032-091a-4d8d-bca1-43ba0229edb8","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":4,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mongocompass-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"6E6IcwN1yFnqHKJCMTOIng"},"key":"redis","hot":null,"trademark":"Redis ","summary":"开源的日志型Key-Value数据库","overview":"Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。","websiteurl":"https://redis.io/","description":"Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。从2010年3月15日起,Redis的开发工作由VMware主持。Redis会周期性的在磁盘写入更新数据或者在记录文件里写入修改操作,实现数据的持久化。","screenshots":[{"id":"69a2c19f-23a4-4ed2-86df-d2a279de14b4","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redis/redisinsight-login-websoft9.png"},{"id":"76aef0c5-0e0c-490f-be29-fe8dc8126b84","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redis/redisinsight-consolegui-websoft9.p4100
ch1
ng"}],"distribution":[{"id":"168e982a-e85c-4d76-82ad-d4854eea7296","key":"Community","value":"7.0"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/redis-websoft9.png"},"catalogCollection":{"items":[{"key":"memorydb","title":"缓存数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"5KV7kOekuxzxCzr2Tq39Hw"},"key":"redisinsight","hot":10000,"trademark":"RedisInsight","summary":"官方出品的 Redis 可视化管理工具","overview":"RedisInsight provides an intuitive and efficient UI for Redis and Redis Stack and supports CLI interaction in a fully-featured desktop UI client.","websiteurl":"https://redis.io/","description":"RedisInsight supports all Redis deployments. Whether you use Redis Open Source, Redis Stack, Redis Enterprise Software, Redis Enterprise Cloud, or Amazon ElastiCache, RedisInsight makes it easy to interact with your data and your application.","screenshots":[{"id":"6cc22074-6efa-4eae-a6cc-193e43381556","key":"sitegui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redis/redisinsight-dashboard-illustration-2.svg"},{"id":"1bcef493-c1ef-448d-9105-727ab185d825","key":"consol","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redis/redisinsight-consolegui-websoft9.png"}],"distribution":[{"id":"e6424580-d620-4595-8d5a-6760ebe9573f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/redisinsight-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"7w2vdXa5lJ9JhHXi6A9ixr"},"key":"pgadmin","hot":6000,"trademark":"pgAdmin","summary":"Web 图形化 PostgreSQL 数据库管理工具","overview":"pgAdmin 官方出品具有 Web 界面的 PostgreSQL 数据库管理和开发平台。","websiteurl":"https://www.pgadmin.org/","description":"pgAdmin 是世界先进的开源数据库 Postgres 的领先开源管理工具。pgAdmin 旨在满足新手和有经验的 Postgres 用户的需求,提供强大的图形界面,简化数据库对象的创建、维护和使用。","screenshots":[{"id":"b8f4c8aa-fa2c-49dd-a7ad-b64e18325736","key":"gui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/postgresql/pgadmin4-websoft9.png"},{"id":"c04f9bde-70f2-45e0-b8fd-b46ee866be78","key":"connect db","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/postgresql/pgadmin-setconnection-websoft9.png"}],"distribution":[{"id":"cb1193c2-6668-4c37-9f14-309cbf2e616d","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/pgadmin-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"3QQr0k9giJ3ukPqyKW3Zfv"},"key":"mongodb","hot":null,"trademark":"MongoDB","summary":"开源分布式文件存储数据库系统","overview":"基于 Docker 架构,内置可以通过本地浏览器访问的可视化管理工具 MongoDB Compass,满足企业微服务架构的设计思想。","websiteurl":"https://www.mongodb.com/","description":"由 Websoft9 提供的云原生 MongoDB 数据库,是一个企业级产品。它基于 Docker 架构,内置可以通过本地浏览器访问的可视化管理工具 MongoDB Compass,满足企业微服务架构的设计思想。","screenshots":[{"id":"551d42ad-c973-4c75-a65f-bc15c15b636f","key":"gui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/mongodb/mongodb-gui-websoft9.png"},{"id":"2965bdce-54a9-4323-9a00-322c02991e6d","key":"mongodbcompass","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mongodb/mongodbcompass002-websoft9.png"}],"distribution":[{"id":"bc136032-091a-4d8d-bca1-43ba0229edb8","key":"Community","value":"5.0,4.4,4.2,4.0,3.7,3.6,3.5,3.4,3.3,3.2,3.0"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/lo4100
ch1
go/product/mongodb-websoft9.png"},"catalogCollection":{"items":[{"key":"nosql","title":"NoSQL 数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"57IkOhHJX1l2w5d1yorZNa"},"key":"couchdb","hot":null,"trademark":"CouchDB","summary":"原生 HTTP/JSON API 驱动的文档数据库","overview":"Apache CouchDB™ 是一个原生 HTTP/JSON API 驱动的文档数据库,可以作为后端即服务使用。","websiteurl":"https://couchdb.apache.org/","description":"Apache CouchDB 是一个开源的面向文档的数据库管理系统,可以通过 RESTful JavaScript Object Notation (JSON) API 访问。 Apache CouchDB 的目标具有高度可伸缩性,提供了高可用性和高可靠性,即使运行在容易出现故障的硬件上也是如此。","screenshots":[{"id":"a61f7d2e-63e8-404b-b4a8-e500bf444bb2","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/couchdb/couchdb-gui-websoft9.png"},{"id":"96b94631-5a60-44c6-b996-1b075bd81bd3","key":"admin","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/couchdb/couchdb-admin-websoft9.png"}],"distribution":[{"id":"713d7186-e629-4ed2-8b6b-d86fa701ea73","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/couchdb-websoft9.png"},"catalogCollection":{"items":[{"key":"nosql","title":"NoSQL 数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"5YYhjdu5kDCR0YB8kSBFpr"},"key":"rethinkdb","hot":null,"trademark":"RethinkDB","summary":"开源文档(JASON)数据库","overview":"RethinkDB是一个开源文档(JASON)数据库,支持多种数据类型,提供可视化的控制台,很方便部署和构建集群。","websiteurl":"https://rethinkdb.com/","description":"RethinkDB是一个曾经与 MongoDB 齐名的开源文档(JASON)数据库,目前完全由开源社区驱动。它支持多种数据类型,提供可视化的控制台,很方便部署和构建集群。","screenshots":[{"id":"c88fa4e2-56f7-4fc9-87be-07df923c4ea9","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/rethinkdb/rethinkdb-gui-websoft9.png"},{"id":"af40563c-1784-4301-b516-84b17c0d92da","key":"dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/rethinkdb/rethinkdb-ok-websoft9.png"}],"distribution":[{"id":"9e1304ef-c809-4397-ae6b-d7f86cbebf57","key":"Community","value":"2.4"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/rethinkdb-websoft9.png"},"catalogCollection":{"items":[{"key":"nosql","title":"NoSQL 数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"7f0R97Spsb5zsthLkle7QF"},"key":"cloudbeaver","hot":null,"trademark":"CloudBeaver","summary":"开源的 Web 数据库可视化管理工具","overview":"CloudBeaver是一个开源的 Web 数据库可视化管理工具,支持 PostgreSQL, MySQL, MariaDB, SQL Server, Oracle, DB2, Firebird, H2, Trino 等数据库。","websiteurl":"https://cloudbeaver.io/","description":"Websoft9提供的CloudBeaver镜像,是一个开源的 Web 数据库可视化管理工具,前端基于 TypeScript 和 React 编写,支持 PostgreSQL, MySQL, MariaDB, SQL Server, Oracle, DB2, Firebird, H2, Trino 等数据库。","screenshots":[{"id":"2763f01d-181f-4d77-85ce-565dc68df348","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/cloudbeaver/cloudbeaver-demogui-websoft9.png"},{"id":"655168da-56fa-449b-a48e-9b8a00cdc621","key":"connection","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/cloudbeaver/cloudbeaver-openconn-websoft9.png"}],"distribution":[{"id":"fd254ee7-ab78-4eec-a159-01aea39553be","key":"Community","value":"23.0.2"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/cloudbeaver-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id"4100
ch1
:"46cj5flvzxe4KBKdvhTbna"},"key":"arangodb","hot":10000,"trademark":"ArangoDB","summary":"开源图数据库平台","overview":"ArangoDB是一个可扩展的图形数据库系统,可以从连接的数据中驱动价值, 更快","websiteurl":"https://www.arangodb.com/","description":"本机图形 - 存储数据和关系,以便更快地查询 具有多个级别的联接和更深入的见解,这根本不可能实现 使用传统的关系和文档数据库系统。\n\n文档存储 - 图形中的每个节点都是一个 JSON 文档: 灵活、可扩展且易于从现有文档数据库导入。\n\nArangoSearch - 原生集成的跨平台索引、文本搜索和 用于信息检索的排名引擎,针对速度和内存进行了优化。\n\nArangoDB也提供免费和开源社区版。 作为具有附加功能的商业企业版。","screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"Dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/arangodb/arangodb-gui-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/arangodb-websoft9.png"},"catalogCollection":{"items":[{"key":"graphdb","title":"图引擎数据库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"aaDlMcgXAhVVbNXIEGgH1"},"key":"redmine","hot":null,"trademark":"Redmine","summary":"一款基于WEB的项目管理软件","overview":"Redmine是用RUBY开发的基于WEB的项目管理软件,提供项目管理、WIKI、集成Git等功能。","websiteurl":"https://www.redmine.org/","description":"Redmine是用Ruby开发的基于WEB的项目管理软件,提供项目管理、WIKI、新闻台等功能,集成版本管理系统GIT、SVN、CVS等等。通过WEB 形式把成员、任务、文档、讨论以及各种形式的资源组织在一起,推动项目的进度。","screenshots":[{"id":"263eca38-0454-484a-86fb-216722b86855","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redmine/redmine-gui-websoft9.jpg"},{"id":"081d5e3f-8614-4366-8246-ba7f9dfd1ce9","key":"language","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/redmine/redmine-language-websoft9.png"}],"distribution":[{"id":"bd78e60f-c644-4c8c-a276-0e0f7fff0576","key":"Community","value":"5.0,latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/redmine-websoft9.png"},"catalogCollection":{"items":[{"key":"itsm","title":"云设施监控","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}},{"key":"agile","title":"需求/看板/缺陷","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"3lkEtjgjazmyBzR1jpBSbP"},"key":"pydio","hot":10000,"trademark":"Pydio Cells","summary":"安全可靠的文档共享和协作平台","overview":"安全、云原生、可扩展、自托管、开放核心的文档共享和协作,而不会使数据面临风险。","websiteurl":"https://pydio.com/","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"GUI","value":"http://libs.websoft9.com/Websoft9/DocsPicture/en/cells/cells-gui-websoft9.png"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":2,"storage":10,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/pydio-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"1fT8qONCTMdwrK1Jkexxax"},"key":"kasm-workspaces","hot":10000,"trademark":"Kasm Workspaces","summary":"容器化应用程序和桌面流 Kasm Workspaces","overview":"将容器化应用程序和桌面流式传输到最终用户。Workspaces 平台提供企业级编排、数据丢失防护和 Web 流技术,支持将容器化工作负载交付到浏览器。4100
ch1
","websiteurl":"https://www.kasmweb.com/","description":null,"screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kasmweb/kasmweb-gui-websoft9.webp"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/kasmweb-websoft9.png"},"catalogCollection":{"items":[{"key":"cloud-workspaces","title":"云桌面","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}},{"key":"container","title":"容器","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"6oRa2Zyb36GxRMo10xDg9D"},"key":"owncloud","hot":null,"trademark":"OwnCloud ","summary":"一款云存储开源软件","overview":"ownCloud用于自建私有网盘的云存储开源软件,功能类似百度云盘,提供了PC、IOS和Android三个同步客户端。","websiteurl":"https://owncloud.com/","description":"ownCloud是一款用于自建私有网盘的云存储开源软件,采用PHP+MySQL开发,功能类似百度云盘,提供了PC、IOS和Android三个同步客户端支持多种设备访问,用户可以很方便地与服务器上存储的文件、日程安排、通讯录、书签等重要数据保持同步,还支持其他同步来源:Amazon S3、Dropbox、FTP、Google Drive、OpenStack Object Storage、SMB、WebDAV、SFTP。","screenshots":[{"id":"1fecd2be-94c4-47da-a188-c51b2ba2931b","key":"init","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/owncloud/owncloud-init1-websoft9.png"},{"id":"725ef05a-0ea3-4a87-b7bd-193cfe0a3973","key":"install","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/owncloud/owncloud-installcomplete-websoft9.png"}],"distribution":[{"id":"883d30e9-bf3a-4466-8c5c-e55639b2c9b7","key":"Community","value":"10.11"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/owncloud-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"7s6wQu0OOD3Tu6VzLkcTE"},"key":"tensorflow","hot":300,"trademark":"TensorFlow","summary":"TensorFlow 是一个端到端开源机器学习平台。","overview":"由 Websoft9 提供的 TensorFlow 镜像环境,预装了 TensorFlow 2.8, Nginx 1.20, Python3.8等组件,可在云服务器上一键部署。TensorFlow 是一个端到端开源机器学习平台。它可以轻松地构建模型、随时随地进行可靠的机器学习生产、进行强大的研究实验。","websiteurl":"https://www.tensorflow.org/","description":"TensorFlow 是一个端到端开源机器学习平台。它拥有一个全面而灵活的生态系统,其中包含各种工具、库和社区资源。在机器学习方面,它可以轻松地构建模型、随时随地进行可靠的机器学习生产、进行强大的研究实验。\n","screenshots":[{"id":"6e0024b4-895f-4880-aaae-7e60289bda4c","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/tensorflow/tensowflow-gui-websoft9.jpg"},{"id":"26f9291a-a949-4f07-809e-6652d0ff101a","key":"tensorboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/tensorflow/tensorboard.gif"}],"distribution":[{"id":"480b5196-add5-47f7-a2f4-b8c9811da03c","key":"Community","value":"2.11.0"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/tensorflow-websoft9.png"},"catalogCollection":{"items":[{"key":"dl","title":"深度学习","catalogCollection":{"items":[{"key":"ai","title":"人工智能"}]}},{"key":"aiapps","title":"AI 仿真应用","catalogCollection":{"items":[{"key":"ai","title":"人工智能"}]}},{"key":"virtual-reality","title":"虚拟仿真","catalogCollection":{"items":[{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"5Z7EV9C7orv0YLKTaOWnCz"},"key":"onlyoffice","hot":null,"trademark":"ONLYOFFICE","summary":"是一款开源�2196
ch1
��团队协作办公套件","overview":"ONLYOFFICE Workspace是一款集成了文档、电子邮件、事件、任务和客户关系管理工具的团队协作办公套件与生产力工具。","websiteurl":"https://www.onlyoffice.com/","description":"ONLYOFFICE Workspace 是一款集成了文档、电子邮件、事件、任务和客户关系管理工具的团队协作办公套件与生产力工具。其文档管理功能可用于替代 Office365。ONLYOFFICE Workspace 为用户提供了多种编辑工具与协作功能,可确保团队实现更优秀的工作流,并在网页端提供无缝的复杂格式化工作协作解决方案。","screenshots":[{"id":"900adc3e-588c-478b-986d-b05cb9534fc2","key":"ui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/onlyoffice/onlyoffice-websoft9-001.png"},{"id":"c99c1c05-4b6a-45e6-8416-c2849c0a3876","key":"document","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/onlyoffice/onlyoffice-websoft9-002.png"}],"distribution":[{"id":"470afc11-23a6-43cc-ae88-69cfeee21954","key":"Community ","value":"12.0"}],"vcpu":2,"memory":8,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/onlyoffice-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}},{"key":"pm-task","title":"项目/任务","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"1i1FTT5UFDNcZL30tsYns2"},"key":"focalboard","hot":300,"trademark":"Focalboard","summary":"面向技术人员的项目管理系统 ","overview":"Focalboard是一个面向技术团队的开源项目管理。让一切和每个人都步入正轨,所有这些都在 Mattermost 平台中。","websiteurl":"https://www.focalboard.com/","description":null,"screenshots":[{"id":"b7726315-f237-412a-bf32-827f7f29a8fd","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/focalboard/focalboard-gui-websoft9.png"}],"distribution":[{"id":"54029d6d-4383-4418-9d4e-29e6b8cbfd77","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websof4100
ch1
t9.com/Websoft9/logo/product/focalboard-websoft9.png"},"catalogCollection":{"items":[{"key":"agile","title":"需求/看板/缺陷","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"collaboration","title":"协作办公"}]}},{"key":"pm-task","title":"项目/任务","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"TU80cEqa6aQ9KPxnhYTjE"},"key":"seafile","hot":10000,"trademark":"Seafile","summary":"一款开源的企业云盘,注重可靠性和性能","overview":"Seafile 是一款开源的企业云盘,注重可靠性和性能。支持 Windows, Mac, Linux, iOS, Android 平台。支持文件同步或者直接挂载到本地访问。","websiteurl":"https://www.seafile.com/home/","description":"Seafile 是一款开源的企业云盘,注重可靠性和性能。支持 Windows, Mac, Linux, iOS, Android 平台。支持文件同步或者直接挂载到本地访问。","screenshots":[{"id":"90d505c8-999e-451b-898f-6cc089c50170","key":"seafile","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/seafile/seafile-gui-websoft9.png"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"10.0.1"},{"id":"62ea8a53-4174-4fa7-801b-d945e183a808","key":"Enterprise","value":"7.1"}],"vcpu":2,"memory":8,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/seafile-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"5YL3HENr0Q4QBA33Gxpvdl"},"key":"kodbox","hot":null,"trademark":"Kodbox","summary":"像Windows操作一样的企业网盘","overview":"KodCloud(可道云)是类似 Windows 体验的集在线文件管理、多云存储和协同办公于一体的开源系统。","websiteurl":"https://kodcloud.com/","description":"KodCloud (可道云)原名为 KodExplorer,它是一个类似 Windows 体验的集在线文件管理、多云存储和协同办公于一体的开源系统。它界面优美和流畅,支持数百个文件格式预览,企业级的细粒度权限管控和信创认证让上云更加安全可靠。","screenshots":[{"id":"b44a884c-5531-4c09-b544-f9830b3b66d8","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kodcloud/kodcloud-gui-websoft9.png"},{"id":"91868f1c-b2c4-4b4e-89d3-21bd5b26cbf5","key":"home","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kodcloud/kodcloud-home-websoft9.png"},{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"plugin","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/kodcloud/kodcloud-plugins-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"v1.4104"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/kodbox-websoft9.png"},"catalogCollection":{"items":[{"key":"document","title":"文档协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"7njG7ux1rSrhZ64LEbC8Yt"},"key":"srs","hot":10000,"trademark":"SRS","summary":"高性能视频流服务器","overview":"SRS(Simple Realtime Server)是一个简单高效的实时视频服务器,支持RTMP、WebRTC、HLS、HTTP-FLV、SRT等多种实时流媒体协议。","websiteurl":"https://ossrs.net/","description":"基于协程技术,无异步回调难以维护的问题,SRS支持云原生标准(Docker镜像、K8s部署、可观测性日志和监控指标等),提供云SRS无门槛应用。SRS聚焦于实时流媒体网关,实现实时流媒体协议的接入和互相转换以及不断迭代,比如RTMP、HLS、WebRTC、HTTP-FLV和SRT等。","screenshots":[{"id":"2a67c8fd-fdaf-4739-a8a8-eabe71f6e266","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/srs/srs-console-websoft9.png"},{"id":"59e2855e-f486-46fc-8d04-0d269e8ff017","key":"架构图","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/srs/srs-main-websoft9.png"}],"distribution":[{"id":"b94100
ch1
cf9c4b-7d34-4b23-9df3-811ae45b935c","key":"Community","value":"6.0.45"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/srs-websoft9.png"},"catalogCollection":{"items":[{"key":"video-server","title":"视频服务","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}},{"key":"meeting","title":"会议/直播","catalogCollection":{"items":[{"key":"communication","title":"通信"}]}}]}},{"sys":{"id":"23HrDKURRv8pE2HGxOjrJg"},"key":"mattermost","hot":null,"trademark":"mattermost","summary":"开源的团队通讯服务系统","overview":"Mattermost是一个 Slack 的开源替代品,基于团队聊天为核心,集成文件、邮件等,把各种碎片化的企业沟通和协作集中到一起。","websiteurl":"https://mattermost.com/","description":"Mattermost是一个 Slack 的开源替代品。采用 Go 语言开发,可为团队带来跨 PC 和移动设备的消息、文件分享,提供归档和搜索功能,是一个开源的团队通讯服务系统。","screenshots":[{"id":"5ce48cc3-a26e-488f-9b31-7ea947d8de53","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mattermost/mattermost-gui-websoft9.webp"},{"id":"e0abb6b7-cce2-4009-a63d-aea819d591ee","key":"display","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/mattermost/mattermost-display-websoft9.png"}],"distribution":[{"id":"8c77261f-1f32-41e8-ade4-6014bea9bee7","key":"Community","value":"7.10"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mattermost-websoft9.png"},"catalogCollection":{"items":[{"key":"chat","title":"团队聊天","catalogCollection":{"items":[{"key":"communication","title":"通信"}]}},{"key":"pm-task","title":"项目/任务","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"3IH3rRDjM22v9HM127EmCi"},"key":"chatgptnextweb","hot":10000,"trademark":"ChatGPT Next Web","summary":"ChatGPT 私有化应用","overview":"一键拥有你自己的跨平台 ChatGPT 应用 (Web / PWA / Linux / Win / MacOS)","websiteurl":"https://chatgpt1.nextweb.fun/","description":null,"screenshots":[{"id":"3c5f8afa-0618-4999-be55-2ee0d39bd7e2","key":"Dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/chatgptnextweb/chatgptnextweb-websoft9.png"}],"distribution":[{"id":"21b7b8c9-9e78-4bd1-87ab-3656e188d206","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/chatgptnextweb-websoft9.png"},"catalogCollection":{"items":[{"key":"aigc","title":"AIGC","catalogCollection":{"items":[{"key":"ai","title":"人工智能"}]}}]}},{"sys":{"id":"Bh2yrmQlrGLpfBf8u1dEn"},"key":"apex","hot":10000,"trademark":"APEX","summary":"Oracle 出品的低代码应用开发平台","overview":"Oracle APEX 是 Oracle 出品的以 Oracle Database 为底层的低代码开发平台 ","websiteurl":"https://apex.oracle.com/","description":"Oracle APEX 是低代码开发平台。借助该平台,您可以构建功能先进的可扩展安全企业应用,并且可在任何位置部署应用。\n\n使用 APEX,开发人员可快速开发并部署出色的应用,从而解决实际问题并立即创造价值。您无需精通各种技术,就可以提供高级解决方案。您只需集中精力解决业务问题,其他工作都可以交给 APEX 来处理。","screenshots":[{"id":"08affe73-1269-4be7-af16-c9515a8d78a7","key":"apex","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/apex/apex-oracle-wordpress.png"}],"distribution":[{"id":"b82803e5-dda0-4de3-a3da-c57555429418","key":"Community","value":"latest"}],"vcpu":2,"memory":8,"storage":10,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/oracle-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"1YrdAH2ii73NpK7DjCpKMR"},"key":"excalidraw","hot4100
ch1
":10000,"trademark":"Excalidraw","summary":"在线虚拟白板系统","overview":"Excalidraw是一个开源的虚拟手绘风格的白板。它可以帮助您创建协作和端到端加密逻辑示意图。","websiteurl":"https://github.com/excalidraw/excalidraw","description":null,"screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/excalidraw/excalidraw-gui-websoft9.png"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/excalidraw-websoft9.png"},"catalogCollection":{"items":[{"key":"whiteboard-and-note","title":"白板/笔记","catalogCollection":{"items":[{"key":"create","title":"设计创作"}]}},{"key":"task","title":"任务协作","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}}]}},{"sys":{"id":"7FwhnvboG5hH0qSqPFuNfF"},"key":"appflowy","hot":10000,"trademark":"AppFlowy","summary":"Notion 开源替代品 ","overview":"AppFlowy是Notion的开源替代品。您负责您的数据和自定义。用Flutter and Rust构建。","websiteurl":"https://appflowy.io/","description":null,"screenshots":[{"id":"5ce48cc3-a26e-488f-9b31-7ea947d8de53","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/appflowy/appflowy-gui-websoft9.png"}],"distribution":[{"id":"8c77261f-1f32-41e8-ade4-6014bea9bee7","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/appflowy-websoft9.png"},"catalogCollection":{"items":[{"key":"pm-task","title":"项目/任务","catalogCollection":{"items":[{"key":"collaboration","title":"协作办公"}]}},{"key":"whiteboard-and-note","title":"白板/笔记","catalogCollection":{"items":[{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"7FRM6Ercqt1jcoyYCxHd23"},"key":"nocobase","hot":10000,"trademark":"Nocobase","summary":"开源零(低)代码平台","overview":"NocoBase 是一个可扩展性优先的开源无代码/低代码平台,用于构建内部工具。","websiteurl":"https://www.nocobase.com/","description":null,"screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"控制面板","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/nocobase/nocobase-gui-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/nocobase-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"6XiF0HjKWh8ghk5AhJG0Ym"},"key":"nocodb","hot":10000,"trademark":"NocoDB","summary":"Airtable 开源替代系统","overview":"NocoDB是一个开源#NoCode平台,可将任何数据库转换为智能电子表格。","websiteurl":"https://www.nocodb.com/","description":null,"screenshots":[{"id":"3a6e1655-d66e-4d36-9431-cbe000d069c1","key":"控制面板","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/nocodb/nocodb-gui-websoft9.png"}],"distribution":[{"id":"2c1a7943-f9b7-41e9-9d19-ed6dccd6db36","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/nocodb-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"LTWbkdq2GrC9rBXNcVlCY"},"key":"apitable","hot":10000,"trademark":"APITable 维格表","summary":"低代码开发平台,替代 Airtable","overview":"APITable is an incredibly simple and powerful work management OS. You'll be able to get started in just one second, without any complicated setup or training required.\nOnce you're up and running, you'll find4100
ch1
 that APITable is the coolest project management software you've ever used. Whether you're a solo entrepreneur or part of a large team, APITable can help you achieve your goals and increase productivity.","websiteurl":null,"description":"Customizable View\n7 types of views included.\nAnd you can extend more views by our API & SDK.\n\nTable View, Board View, Gantt View\nArchitecture View, Gallery View, Calendar View\nUse our SDK to extend more views\n\nInfinite Cross Link\nUnlike other Low Code Softwares, Apitable is not a \"Base/App\" structure. You can link unlimited and infinite tables in one space.\n\nLink 1000+ tables together\nOne-direction or Bi-direction Link\nCross Space Shortcuts\n\nRow Permissions\nActivate Rows permissions with a single click through our function called \"Mirror\"\n\nSimple & Powerful row permission\nRows private to only you\nUse a View as an App\n\nOne-Click API Panel\nAPI is the first-class citizen in APITable.\nYou can summon the API power everywhere.\n\nJava/JavaScript/C#/Python... SDK\nCRUD like Database with API\nJSON column, JavaScript column\n\nAutomation\nWith all different kinds of tools connected, you can optimize your workflow solely based on your actual needs.\n\nZapier/Tray.io integration\nScheduled time automation trigger\nExecute code\n\nBI Dashboard\nFreedom \"Dashboard\" interface. You can easily create a BI system.\n\nUse a Dashboard as Standalone App\nCustomize unlimited charts\nDevelop widgets with SDKs","screenshots":[{"id":"160674cb-8ebf-4e9f-8141-7f162fb844a2","key":"apitable","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/apitable/apitable-websoft9.png"}],"distribution":[{"id":"a6008421-6a17-4ed7-8da9-6e3bc35e318d","key":"Community","value":"v0.99.0-alpha_1575"}],"vcpu":2,"memory":8,"storage":2,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/apitable-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}},{"key":"software-platform","title":"软件与平台","catalogCollection":{"items":[{"key":"industry","title":"行业"}]}}]}},{"sys":{"id":"4nHylbRHlh8qcvrseRRTui"},"key":"zammad","hot":10000,"trademark":"Zammad","summary":"客服与工单系统","overview":"Zammad 是一个基于 Web 的开源帮助台/客户支持系统,具有许多 通过电话等多种渠道管理客户沟通的功能, 脸书、推特、聊天和电子邮件。","websiteurl":"https://zammad.org/","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/zammad/zammad-gui-websoft9.png"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"4.1.0-6"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/zammad-websoft9.png"},"catalogCollection":{"items":[{"key":"helpdesk","title":"客服支持","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"4nlAAlU1bouQNsngKZPukv"},"key":"vtiger","hot":10000,"trademark":"Vtiger","summary":"一套开源的客户关系管理系统(CRM)","overview":"Vtiger Community Edition is an opensource CRM system that helps you create and automate a better customer journey.","websiteurl":"https://www.vtiger.com/","description":"Vtiger Community Edition 一套开源的客户关系管理系统(CRM),它是基于 SugarCRM 开发的一个衍生版本。适合中小企业从业务、市场、销售、采购、库存、客服等全程跟踪客户,实现销售自动化,获取更多订单。","screenshots":[{"id":"dc3c58f4-039c-418f-92dd-83d1cc73a4f4","key":"vtigercrm","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/vtigercrm/vtigercrm-backend-websoft9.png"}],"distribution":[{"id":"b779ea0e-2675-4535-aa09-a0861511cf02","key":"Community","value":"7.4.0"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/vtig4100
ch1
er-websoft9.png"},"catalogCollection":{"items":[{"key":"crm","title":"CRM","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"2ttANuF7psuQEisiRkv7DM"},"key":"espocrm","hot":10000,"trademark":"EspoCRM","summary":"一个有助于企业效率管路的客户关系管理系统","overview":"EspoCRM是一个基于web的CRM解决方案,闪电般快速且易于定制。它为您提供了了解消费者行为的工具,并专门为他们的需求提供产品和服务。","websiteurl":"https://www.espocrm.com/","description":"EspoCRM是一个轻量级的开源客户关系管理器,它旨在为企业提供一个易于定制、性能强大、用户界面清晰、适用于任何设备的解决方案。EspoCRM提供了许多功能,包括销售管理、客户服务、活动和日历、文档管理等。","screenshots":[{"id":"ea032c57-98c8-481e-ad51-96b805ecf66b","key":"gui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/en/espocrm/espocrm-gui-websoft9.jpg"},{"id":"e565b171-2a9a-4caa-a6fe-a42dd300d6e7","key":"dashboard","value":"http://libs.websoft9.com/Websoft9/DocsPicture/en/espocrm/espocrm-main-websoft9.png"},{"id":"b33a03b1-1fc6-4081-9af7-d6f69f1ec280","key":"smtp","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/espocrm/espocrm-smtp-2-websoft9.png"}],"distribution":[{"id":"f81cf4c5-ab2e-4bda-8522-8cc228af4d13","key":"Community","value":"7.4"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/espocrm-websoft9.png"},"catalogCollection":{"items":[{"key":"crm","title":"CRM","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"5uwmfb7BW4wbQb8vMwKWLc"},"key":"erpnext","hot":null,"trademark":"ERPNext","summary":"开源ERP系统","overview":"ERPNext是一个 基于 Python 和 Node 开发的开源ERP系统 ,它功能全面,非常合适作为 SAP 的替代品。","websiteurl":"https://erpnext.com/","description":"ERPNext是一个开源的 ERP,基于 Python 和 Node 开发,它功能全面,包含会计、人力资源、制造、网站、电商、CRM、资产管理、客服工作台等功能。非常合适作为 SAP 的替代品,全球已经有超过 5,000 家企业客户使用。","screenshots":[{"id":"7c16bde0-98d1-47e5-b46f-6e7021d79767","key":"ui","value":"http://libs.websoft9.com/Websoft9/DocsPicture/en/erpnext/erpnext-adminui-websoft9.png"},{"id":"b8f4c8aa-fa2c-49dd-a7ad-b64e18325736","key":"users","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/erpnext/erpnext-users-websoft9.png"}],"distribution":[{"id":"cb1193c2-6668-4c37-9f14-309cbf2e616d","key":"Community","value":"v13,v14"}],"vcpu":2,"memory":8,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/erpnext-websoft9.png"},"catalogCollection":{"items":[{"key":"erp","title":"ERP","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"2dPC0Uw5JRfE0oiJVNKUbR"},"key":"suitecrm","hot":10000,"trademark":"SuiteCRM","summary":"开源的企业级CRM","overview":"SuiteCRM 是一个屡获殊荣的企业级的、强大的、可定制的,免费的CRM系统。","websiteurl":"https://suitecrm.com/","description":"SuiteCRM 是一个屡获殊荣的企业级的、强大的、可定制的,免费的CRM系统。包括市场、销售过程管理、协作管理、工作流、门户等功能模块。所有功能全部开源,完全具备商业CRM软件媲美的功能和架构。","screenshots":[{"id":"6d86c773-187f-40c2-b8a9-d41649d15a41","key":"suitecrm","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/suitecrm/suitecrm-backend-websoft9.png"}],"distribution":[{"id":"27678ee3-2e13-43c6-8637-ace34fcce39b","key":"Community","value":"8.1"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/suitecrm-websoft9.png"},"catalogCollection":{"items":[{"key":"crm","title":"CRM","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"3asf7BxnNe5eun54100
ch1
TeWk5b7"},"key":"dolibarr","hot":null,"trademark":"Dolibarr","summary":"一个流行的开源ERP/CRM系统","overview":"Dolibarr是一个流行的开源ERP/CRM系统,模块可以即插即用,生态完善,全球范围内都有定制和服务商。","websiteurl":"https://www.dolibarr.org/","description":"Dolibarr是一个流行的开源ERP/CRM系统,功能包括:产品与服务目录、库存管理、银行账户管理、客户名录、订单管理、商业建议书、合同管理、发票管理、发票与支付管理、制造费用单、运输等,即插即用。","screenshots":[{"id":"48952913-7f7b-4a2a-bc30-dab6302e8fdd","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/dolibarr/dolibarr-gui-websoft9.webp"},{"id":"4d89722d-a83d-4421-bdaa-4c358d8b833d","key":"backend","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/dolibarr/dolibarr-backend-websoft9.png"}],"distribution":[{"id":"9b954c65-824e-4406-a307-5b0037497db8","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/dolibarr-websoft9.png"},"catalogCollection":{"items":[{"key":"erp","title":"ERP","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}},{"key":"crm","title":"CRM","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}},{"key":"software-platform","title":"软件与平台","catalogCollection":{"items":[{"key":"industry","title":"行业"}]}}]}},{"sys":{"id":"1NfrwGiDkWOdDVKdmHm0e2"},"key":"odoo","hot":null,"trademark":"Odoo","summary":"面向全球用户的开源ERP/CRM软件","overview":"Odoo是面向全球用户的开源ERP/CRM软件,它有强大而灵活的系统架构,产品迭代速度非常快,用户可模块化修改、升级、新增功能。","websiteurl":"https://www.odoo.com/","description":"Odoo是面向全球用户的开源ERP/CRM软件,它有强大而灵活的系统架构,产品迭代速度非常快,用户可模块化修改、升级、新增功能。常用模块包括:采购管理,销售管理,库存管理,财务管理,货品管理,营销管理,客户关系管理,生产管理,人事管理,服务支持、电子商务、建站等。适用于制造、零售连锁、服务、电子商务、外贸等行业。采用Python+PostgreSQL开发,有超过730个合作伙伴和200万用户。","screenshots":[{"id":"53762941-eccc-4960-9754-e1ee5e6d6d85","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/odoo/odooui-websoft9.png"},{"id":"e505937c-71ee-4771-9db3-2c6fcecd2cc2","key":"console","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/odoo/odoo-consoleui-websoft9.png"}],"distribution":[{"id":"bfd16631-79e8-4db3-bb94-d349e7fe02a8","key":"Community","value":"16.0,15.0,14.0"}],"vcpu":1,"memory":2,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/odoo-websoft9.png"},"catalogCollection":{"items":[{"key":"erp","title":"ERP","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}},{"key":"crm","title":"CRM","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}},{"key":"finance-and-tax","title":"财税","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"5RvtZRhq9BDlqRyTshu5LW"},"key":"rocketchat","hot":10000,"trademark":"Rocket.Chat","summary":"团队聊天和信息协作系统","overview":"Rocket.Chat是一个开源的完全可定制的通信平台,用JavaScript开发,适用于具有高标准数据保护的组织。","websiteurl":"https://www.rocket.chat/","description":"Rocket.Chat有四个关键产品:\n\n- 团队协作 - 实现安全内部和跨公司协作的单点。\n- 全渠道客户服务 - 与客户进行无缝互动,无论他们如何与您联系。\n- 聊天引擎 - 在移动或 Web 应用中创建自定义消息传递体验。\n- 市场 - 选择广泛的应用和本机集成,帮助您的企业更有效地沟通。","screenshots":[{"id":"e0abb6b7-cce2-4009-a63d-ae4100
ch1
a819d591ee","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/rocketchat/rocketchat-gui-websoft9.png"}],"distribution":[{"id":"8c77261f-1f32-41e8-ade4-6014bea9bee7","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/rocketchat-websoft9.png"},"catalogCollection":{"items":[{"key":"chat","title":"团队聊天","catalogCollection":{"items":[{"key":"communication","title":"通信"}]}},{"key":"helpdesk","title":"客服支持","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"3N1q7Xjn6wlgaZ4qPbLtt0"},"key":"mautic","hot":10000,"trademark":"Mautic","summary":"开源营销自动化系统","overview":"Mautic为 所有人提供免费和开源 的营销自动化软件。免费电子邮件营销软件,潜在客户管理软件等。","websiteurl":"https://www.mautic.org/","description":null,"screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/mautic/mautic-gui-websoft9.jpg"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/mautic-websoft9.png"},"catalogCollection":{"items":[{"key":"marketing","title":"市场营销","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"66nvg2eHzQcGhpg4WLpcji"},"key":"akaunting","hot":10000,"trademark":"Akaunting","summary":"会计与记账系统","overview":"Akaunting是一款免费的开源在线会计软件,专为小型企业和自由职业者设计。","websiteurl":"https://akaunting.com/","description":null,"screenshots":[{"id":"ec40efc7-139e-4056-aa9a-7b0907b612f4","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/akaunting/akaunting-gui-websoft9.png"}],"distribution":[{"id":"1675d02c-0f9e-43ef-84d9-27e0f5a1856f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/akaunting-websoft9.png"},"catalogCollection":{"items":[{"key":"finance-and-tax","title":"财税","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}}]}},{"sys":{"id":"7fjCblfwTbRxhWsnYv7KHq"},"key":"metabase","hot":null,"trademark":"Metabase","summary":"公司团队交互式可视化数据分析","overview":"Metabase 是一个类似 Tableau,多用于公司团队交互式可视化数据分析。","websiteurl":"https://www.metabase.com/","description":"Metabase 是一个类似 Tableau 的数据分析系统,它具备简单、开源的数据呈现方式,通过给公司成员、分析师新建Question,从而得到数据进行分析、学习。","screenshots":[{"id":"b686fa6e-ef04-4b27-9780-f6081708f8b4","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/metabase/metabase-product-screenshot.png"},{"id":"d2e6218f-4d17-42ad-ad14-59c6559660d7","key":"dashboard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/metabase/metabase-dashborad-websoft9.png"}],"distribution":[{"id":"4e707cd9-b4f0-4495-b4aa-1b9b080e915f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/metabase-websoft9.png"},"catalogCollection":{"items":[{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"713ubwiVQX7nOWAQDE8n3G"},"key":"knowage","hot":null,"trademark":"Knowage","summary":"一套适合现代商业分析的开源工具套装","overview":"Knowage是一个完整的开源现代商业智能套件,用于现代商业数据分析。","websiteurl":"https://www.knowage-suite.com/site/","description":"Knowage是一个完整的开源现代商业智能套件,用于在传统来源的结构化企业历史数据和外部NoSQL多结构的大数据系统上进行现代业务分析,并�4100
ch1
�生成可视化的报告。Knowage套件由多个模块组成,每个模块都针对特定的分析领域而设计。它们可以单独使用,也可以相互结合使用,以确保完全满足用户的要求,从而打造出量身定制的产品。","screenshots":[{"id":"2ed849af-800d-454b-8aea-bf0986cd681f","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/knowage/knowage-gui-websoft9.png"},{"id":"b54e4726-52fe-4ee1-9b22-e804de4b9791","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/knowage/knowage-login-websoft9.png"}],"distribution":[{"id":"0fe27b40-1816-4d67-9331-f5345850b507","key":"Community","value":"latest"}],"vcpu":1,"memory":4,"storage":3,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/knowage-websoft9.png"},"catalogCollection":{"items":[{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"1CKSYb62cU04DIkdUBDOIZ"},"key":"graylog","hot":null,"trademark":"Graylog","summary":"一个领先的集中式日志管理解决方案","overview":"开源日志管理工具,支持TB级别机器数据的聚合、分析、审计、展现和预警。","websiteurl":"https://www.graylog.org/","description":"Graylog是一个领先的集中式日志管理解决方案,它是为捕获、存储和支持对万亿字节机器数据进行实时分析的开放标准而构建的。通过快速、高效、低成本、灵活地进行分析,我们可以提供更好的用户体验。","screenshots":[{"id":"324d395d-c880-41cc-af4d-3356a85fa87f","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/graylog/graylog-gui-websoft9.png"},{"id":"b621c299-8c80-4026-8e42-81ccb0890416","key":"login","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/graylog/graylog-login-websoft9.png"}],"distribution":[{"id":"7d7cd69a-3350-4a68-a16b-4038aec7bee0","key":"Community","value":"5.0.7"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/graylog-websoft9.png"},"catalogCollection":{"items":[{"key":"data-integration","title":"数据集成","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"logs","title":"日志管理","catalogCollection":{"items":[{"key":"itdevops","title":"IT 监控运维"}]}}]}},{"sys":{"id":"6hg7QP7k1YaK0F86QISLwU"},"key":"elastic","hot":10000,"trademark":"ELK","summary":"一个开源的端到端日志检索分析解决方案","overview":"ELK 是一个开源的端到端日志检索分析解决方案,有助于深度搜索、分析和可视化从不同来源的日志和数据。","websiteurl":"https://www.elastic.co/","description":"ELK Stack是一个日志管理平台,由三个开源项目组成:Elasticsearch、Logstash 和 Kibana。旨在为用户在单个服务器中提供这三种解决方案的功能。它结合了深度搜索和数据分析以及以强大的数据可视化显示。\n\n- Elasticsearch 是一个存储数据和检索数据的数据库;\n- Logstash 是数据提取、清洗和整理的中间件;\n- Kibana 是 Elasticsearch 的可视化管理分析界面;","screenshots":[{"id":"8237593d-1cdb-44a1-954a-d229ea9fc419","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/elk/elk-gui-websoft9.gif"},{"id":"2a67c8fd-fdaf-4739-a8a8-eabe71f6e266","key":"wizard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/elk/elk-wizard1-websoft9.png"}],"distribution":[{"id":"b9cf9c4b-7d34-4b23-9df3-811ae45b935c","key":"Community","value":"8.6.0"}],"vcpu":2,"memory":4,"storage":2,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/elk-websoft9.png"},"catalogCollection":{"items":[{"key":"data-integration","title":"数据集成","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"r18Naa1rOmgttJn1v0HOq"},"key":"budibase","hot":10000,"trademark":"Budibase","summary":"快速构建内部工具的开源低代码平台","overview":"Budibase saves teams 100s of hours building tools th4100
ch1
at integrate perfectly with any workflow","websiteurl":"appsmith.com","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/budibase/budibase-main-websoft9.png"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":2,"memory":4,"storage":4,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/budibase-websoft9.png"},"catalogCollection":{"items":[{"key":"master-data","title":"主数据管理","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"40PUDAY7PxnSiBf3NMhwOd"},"key":"appsmith","hot":10000,"trademark":"Appsmith","summary":"快速构建内部工具的开源低代码平台","overview":"Appsmith 是一个开源框架,可让您的团队更快、更协作地构建自定义内部应用程序,如仪表板、管理面板、CRUD 应用程序","websiteurl":"appsmith.com","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/appsmith/appsmith-gui-websoft9.png"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":2,"memory":4,"storage":10,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/appsmith-websoft9.png"},"catalogCollection":{"items":[{"key":"master-data","title":"主数据管理","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}}]}},{"sys":{"id":"4rE4wmMVq9iHtTR9WRboPA"},"key":"matomo","hot":10000,"trademark":"Matomo Analytics","summary":"网站与移动应用分析平台 ","overview":"Matomo是Google Analytics(分析)的领先开放替代方案,可让您完全控制数据。Matomo让您可以轻松地从网站和应用程序中收集数据,并将其可视化。","websiteurl":"https://matomo.org/","description":null,"screenshots":[{"id":"65811856-8f3e-465b-99ec-24ac8fdded6a","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/matomo/matomo-show-websoft9.png"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/matomo-websoft9.png"},"catalogCollection":{"items":[{"key":"web-analytics","title":"Web 分析","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"1qV7Jks96PPIZMMTe05PZN"},"key":"umami","hot":10000,"trademark":"Umami","summary":"易于使用和隐私友好的谷歌分析替代方案","overview":"Umami is a simple, fast, privacy-focused alternative to Google Analytics.","websiteurl":"https://umami.is/","description":null,"screenshots":[{"id":"65811856-8f3e-465b-99ec-24ac8fdded6a","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/umami/umami-gui-websoft9.png"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/umami-websoft9.png"},"catalogCollection":{"items":[{"key":"web-analytics","title":"Web 分析","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"2rYGl5GbgPPucVok4fyoXH"},"key":"plausible","hot":10000,"trademark":"Plausible","summary":"易于使用和隐私友好的谷歌分析替代方案","overview":"Plauspossible是直观,轻量级和开源的网络分析。没有 cookie,完全符合 GDPR、CCPA 和 PECR。在欧盟制造和托管,由欧洲拥有的云基础设施🇪🇺提供支持","websiteurl":"https://plausible.io/","description":null,"screenshots4100
ch1
":[{"id":"65811856-8f3e-465b-99ec-24ac8fdded6a","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/plausible/plausible-gui-websoft9.webp"}],"distribution":[{"id":"8d4e5c30-54aa-4955-9b23-86eeac7d51bc","key":"Community","value":"v1.5"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/plausible-websoft9.png"},"catalogCollection":{"items":[{"key":"web-analytics","title":"Web 分析","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"3bCBnBly1HqDgKoLiREKIG"},"key":"opensearch","hot":10000,"trademark":"OpenSearch","summary":"由社区共同推动的 Elasticsearch 与 Kibana 开源分支","overview":"OpenSearch 是一个可扩展、灵活且可扩展的开源软件套件,适用于根据 Apache 2.0 许可的搜索、分析和可观测性应用程序。","websiteurl":"https://opensearch.org/","description":null,"screenshots":[{"id":"2a67c8fd-fdaf-4739-a8a8-eabe71f6e266","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/opensearch/opensearch-gui-websoft9.png"}],"distribution":[{"id":"b9cf9c4b-7d34-4b23-9df3-811ae45b935c","key":"Community","value":"latest"}],"vcpu":1,"memory":2,"storage":2,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/opensearch-websoft9.png"},"catalogCollection":{"items":[{"key":"storage-and-search","title":"存储/搜索","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"data-warehouse","title":"数据仓库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}},{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}}]}},{"sys":{"id":"4WmAgpGaKSubXQ1tV69iSP"},"key":"typesense","hot":10000,"trademark":"Typesense","summary":"开源搜索引擎","overview":"Typesense 是一个快速、容错字的搜索引擎,用于构建令人愉悦的搜索体验。","websiteurl":"https://typesense.org/","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"Site","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/typesense/typesense-gui-websoft9.jpg"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/typesense-websoft9.png"},"catalogCollection":{"items":[{"key":"storage-and-search","title":"存储/搜索","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"search","title":"搜索引擎","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"3jwb2X3RyvlOMLEBqQK2yO"},"key":"elasticsearch","hot":10000,"trademark":"Elasticsearch","summary":"开放的分布式数据存储、搜索和分析引擎","overview":"Elasticsearch 是一个分布式、免费和开放的搜索和分析引擎,适用于所有类型的数据,包括文本、数字、地理空间、结构化和非结构化。","websiteurl":"https://www.elastic.co/","description":"Elasticsearch建立在Apache Lucene之上,由Elasticsearch N.V.(现在称为Elastic)于2010年首次发布。Elasticsearch 以其简单的 REST API、分布式特性、速度和可扩展性而闻名,是 Elastic Stack 的核心组件,Elastic Stack 是一组用于数据摄取、扩充、存储、分析和可视化的免费开放工具。通常被称为ELK Stack(在Elasticsearch,Logstash和Kibana之后),Elastic Stack现在包括一个丰富的轻量级运输代理集合,称为Beats,用于将数据发送到Elasticsearch。","screenshots":[{"id":"2a67c8fd-fdaf-4739-a8a8-eabe71f6e266","key":"wizard","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/elk/elk-wizard1-websoft9.png"}],"distribution":[{"id":"b9cf9c4b-7d34-4b23-9df3-811ae45b935c","key":"Community","value":"8.6.0"}],"vcpu":1,"memory":2,"storage":2,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/elasticsearch-websoft9.png"},"catalogCollection":{"ite4100
ch1
ms":[{"key":"storage-and-search","title":"存储/搜索","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"data-warehouse","title":"数据仓库","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}},{"key":"business-intelligence","title":"商业智能","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"search","title":"搜索引擎","catalogCollection":{"items":[{"key":"architecture","title":"IT 应用架构"}]}}]}},{"sys":{"id":"39626EJJPARxjcVKSepBeW"},"key":"typo3","hot":10000,"trademark":"Typo3","summary":"企业级内容管理系统 Typo3","overview":"TYPO3 CMS是一个开源企业内容管理系统,拥有庞大的全球社区,由TYPO900协会的约3名成员提供支持。","websiteurl":"https://typo3.org/","description":null,"screenshots":[{"id":"940b6560-1f94-4a5f-9069-91876b49b07f","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/typo3/typo3-gui-websoft9.png"}],"distribution":[{"id":"19723def-cf68-4890-8322-0ad1ccc66e09","key":"Community","value":"latest"}],"vcpu":2,"memory":4,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/typo3-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"4URrjy4UOe1FUvQqAIhesJ"},"key":"ghost","hot":null,"trademark":"Ghost","summary":"付费订阅创作平台","overview":"Ghost 是一款功能强大的知识内容变现软件,供新媒体创作者围绕其内容发布、分享和发展业务。","websiteurl":"https://ghost.org/","description":"Ghost 是一款功能强大的应用程序,供新媒体创作者围绕其内容发布、分享和发展业务。它配备了现代工具来构建网站、发布内容、发送时事通讯并向会员提供付费订阅。","screenshots":[{"id":"0a6f330b-01f2-4136-8dea-7518504bb93b","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/ghost/ghost-dsgui-websoft9.png"},{"id":"16cd9d79-2e7a-439d-8450-06f60355e532","key":"bootpage","value":"http://libs.websoft9.com/Websoft9/DocsPicture/en/ghost/ghost-bootpage-websoft9.png"},{"id":"9068912e-26a9-47a4-860a-7f4356ee6f0c","key":"themes","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/ghost/ghost-setthemes-websoft9.png"}],"distribution":[{"id":"4b0f4c2d-b3dc-49b5-b578-eb5efbe1c82e","key":"Community","value":"5.47"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/ghost-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"1Pqh5WnA1nv8Q6UI67H8Y0"},"key":"sscms","hot":400,"trademark":"SSCMS","summary":"基于微软 .NET Core 平台的多站点 CMS","overview":"SSCMS 是一款跨平台、可分布式部署的产品,产品能够运行在各类操作系统之上,同时支持 MySql、SqlServer、PostgreSql、SQLite 以及国产达梦数据库。","websiteurl":"https://sscms.com/","description":null,"screenshots":[{"id":"f4312483-bc35-4439-aaf7-8264bb37f4f2","key":"模板","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/sscms/sscms-gui-websoft9.png"}],"distribution":[{"id":"06690cf9-ead9-444e-9f6f-3b5514a89c90","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/sscms-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"education","title":"教育","catalogCollection":{"items":[{"key":"industry","title":"行业"}]}}]}},{"sys":{"id":"4rrqRSNkzoHNsqwzljyih1"},"key":"drupal","hot":null,"trademark":"Drupal","summary":"网站内容管理系统","overview":"Drupal是全球三大开源内容管理系统之一,也是一个开发框架,它的4100
ch1
内核中的有功能强大的PHP类库、函数库和API,能够通过二次化开发来构建复杂多用的企业级应用。","websiteurl":"https://www.drupal.org/","description":"Drupal是全球三大开源内容管理系统之一,约3%的网站使用。Drupal也是一个开发框架,逻辑性强、一块块积木,搭起来以后使页面层层分明,它的内核中的有功能强大的PHP类库、函数库和API,能够通过二次化开发来构建复杂多用的企业级应用。Drupal有良好的商业生态,众多高端优质客户使用进一步推动了开源社区的发展。","screenshots":[{"id":"940b6560-1f94-4a5f-9069-91876b49b07f","key":"ui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/drupal/drupal-gui-websoft9.png"},{"id":"7f93f7f6-fe7e-4639-8042-13e234d43132","key":"backend","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/drupal/drupal-backend-websoft9.png"}],"distribution":[{"id":"19723def-cf68-4890-8322-0ad1ccc66e09","key":"Community","value":"10.0.9"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/drupal-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"2146r05MigS0WqSx3E4KnC"},"key":"nopcommerce","hot":10000,"trademark":"nopCommerce","summary":"开源电子商务系统","overview":"基于微软技术的全球受欢迎的 ASP.NET 电商系统","websiteurl":"https://www.nopcommerce.com/","description":null,"screenshots":[{"id":"a6580172-4b8f-444c-b57f-ec480e042765","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/en/nopcommerce/nopcommerce-devices.png"}],"distribution":[{"id":"6cd21b42-4b6e-43dd-89b5-a849a55b01eb","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/nopcommerce-websoft9.png"},"catalogCollection":{"items":[{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"3Sfqgmnl1h16CxHy460XOs"},"key":"opencart","hot":null,"trademark":"OpenCart","summary":"面向全球用户的开源电子商务系统","overview":"OpenCart是面向全球用户的开源电子商务系统,简单、易用、速度快,广泛应用于企业电商、独立站建站。","websiteurl":"https://www.opencart.com/","description":"OpenCart是面向全球用户的开源电子商务系统,广泛应用于企业电商、独立站建站。OpenCart功能全面,包含商品管理、订单管理、促销管理、内容管理、会员管理、支付、物流、报表等功能。 开源生态体系完善,有大量的模板和插件可用。","screenshots":[{"id":"8d8c93da-8248-41e3-8690-c70163bdb885","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/opencart/opencart-gui-websoft9.png"}],"distribution":[{"id":"cfe92c91-95c7-4141-974b-2947f16c626c","key":"Community ","value":"4.0"}],"vcpu":1,"memory":1,"storage":20,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/opencart-websoft9.png"},"catalogCollection":{"items":[{"key":"ecommerce","title":"电子商务","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"2aequGPHBs2cOQDSB5wh57"},"key":"discourse","hot":10000,"trademark":"Discourse","summary":"用户社区运营与论坛系统","overview":"话语是适用于您社区的现代论坛软件。将其用作邮件列表、论坛、长篇聊天室等","websiteurl":"https://www.discourse.org/","description":null,"screenshots":[{"id":"3e66b007-9fe2-439c-9a74-63e2e7b23322","key":"控制台","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/discourse/discourse-gui-websoft9.webp"}],"distribution":[{"id":"55c787cf-0625-45af-8ca1-6b4d8e3aef9e","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Webs4100
ch1
oft9/logo/product/zammad-websoft9.png"},"catalogCollection":{"items":[{"key":"helpdesk","title":"客服支持","catalogCollection":{"items":[{"key":"business-operation","title":"企业运营"}]}},{"key":"community","title":"社交/论坛","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"4XOFd1b1jOVfnwTNvKUeoj"},"key":"discuz","hot":10000,"trademark":"Discuz","summary":"面向全球用户的论坛系统","overview":"Discuz 是一个以社区为基础的专业建站平台,帮助网站实现一站式服务","websiteurl":"https://www.discuz.net/","description":"Discuz 是面向全球用户的论坛系统之一,支持网站论坛建站。采用PHP+MySQL开发,Discuz! 已经发展成为一个以社区为基础的专业建站平台,让论坛(BBS)、社交网络(SNS)、门户(Portal)、群组(Group)、开放平台(Open Platform)应用充分融合于一体,帮助网站实现一站式服务。","screenshots":[{"id":"5a77f7b9-a165-4e0c-84e1-51a012f6c849","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/discuz/discuz-gui-websoft9.png"},{"id":"4268aa4f-aa17-4a90-a177-d0546e312fe7","key":"backend","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/discuz/ds06.png"}],"distribution":[{"id":"5660d406-8b80-469f-8bf4-8b1f0c3c165b","key":"Community","value":"v3.4.0"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/discuz-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"community","title":"社交/论坛","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"6iY5pqqckRkxnawpbd3cXz"},"key":"discuzq","hot":10000,"trademark":"DiscuzQ","summary":"一套跨端全域的社区工具","overview":"Discuz!Q 是开源的论坛系统,用于构建知识付费、内容变现的圈子或私域流量应用。它拥有完全开源、提供丰富接口、前后端分离、轻量化、数据独立可控、敏捷上云、快速变现七大能力。","websiteurl":"https://www.discuz.chat","description":"DiscuzQ 继承了Discuz! X 的社区的核心能力,增强了变现的能力,原生接入微信生态,且更适配今天移动端的交互,帮助用户碎片化的信息发布及获取。使用主流的框架,前后分离的方式重写了全部代码,数百个接口全部开放,原生的连接微信生态, 能够帮助创业者更高效的上线内容产品。","screenshots":[{"id":"12ba0ea3-f6ae-497e-b846-d53a74d43e09","key":"gui","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/discuzq/discuzq-guim-websoft9.webp"},{"id":"4cf3211c-d481-4b18-a538-de2d4d892d70","key":"payment","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/discuz/discuzq-waychat-websoft9.png"}],"distribution":[{"id":"a744765d-5fb9-419e-a6ff-17f1ef183e5f","key":"Community","value":"v3.0"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/discuzq-websoft9.png"},"catalogCollection":{"items":[{"key":"website","title":"企业建站","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"community","title":"社交/论坛","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"5bSScAcYvbfXXuyfCSyrOu"},"key":"strapi","hot":2000,"trademark":"Strapi","summary":"开源无头CMS,可以快速构建自己所需的 API","overview":"Strapi is the next-gen headless CMS, open-source, javascript, enabling content-rich experiences to be created, managed and exposed to any digital device.\n","websiteurl":"https://strapi.io/","description":"- 后端即服务\n- 无头内容管理系统\n- RESTful or GraphQL","screenshots":[{"id":"978cd708-6681-47a5-9de5-155ea2f5a2d8","key":"GUI","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/strapi/strapi-gui-websoft9.png"}],"distribution":[{"id":"85f6b39b-f47f-44d0-8823-0646ebf17fd8","key":"Community","value":"latest"}],"vcpu":1,"memory"4100
ch1
:1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/strapi-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}},{"key":"master-data","title":"主数据管理","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"headless-cms","title":"无头 CMS","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"6NRX1EysTKa5llN50WiLB8"},"key":"directus","hot":18000,"trademark":"Directus","summary":"数据驱动的低代码与后端即服务平台","overview":"Directus 是一个实时 API 和应用程序仪表板,用于管理 SQL 数据库内容或创建低代码应用\n\n","websiteurl":"https://directus.io/","description":"- 后端即服务\n- 无头内容管理系统\n- 内部工具生成器\n- 数据管理与分析","screenshots":[{"id":"978cd708-6681-47a5-9de5-155ea2f5a2d8","key":"architecture","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/directus/directus-arch-websoft9.svg"}],"distribution":[{"id":"85f6b39b-f47f-44d0-8823-0646ebf17fd8","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/directus-websoft9.png"},"catalogCollection":{"items":[{"key":"low-code","title":"低代码/零代码","catalogCollection":{"items":[{"key":"itdeveloper","title":"IT 开发者"},{"key":"create","title":"设计创作"}]}},{"key":"master-data","title":"主数据管理","catalogCollection":{"items":[{"key":"analytics","title":"数据 & 分析"}]}},{"key":"headless-cms","title":"无头 CMS","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}},{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"hPxXCOEisJk1Nx8yMBPtk"},"key":"humhub","hot":8000,"trademark":"HumHub","summary":"企业社交软件,构建内部的 Facebook","overview":"HumHub是一款直观易用和模块化设计的开源软件,主要用作社交网络,知识数据库,内部网或信息和通信平台。","websiteurl":"https://www.humhub.com/","description":null,"screenshots":[{"id":"12ba0ea3-f6ae-497e-b846-d53a74d43e09","key":"界面","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/humhub/humhub-gui-websoft9.png"}],"distribution":[{"id":"a744765d-5fb9-419e-a6ff-17f1ef183e5f","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/humhub-websoft9.png"},"catalogCollection":{"items":[{"key":"community","title":"社交/论坛","catalogCollection":{"items":[{"key":"cms","title":"内容管理"}]}}]}},{"sys":{"id":"4qwLRAce3CVSUPbI08JmTR"},"key":"chat2db","hot":9000,"trademark":"chat2DB","summary":"AI SQL 多数据库管理工具","overview":"智能的通用数据库SQL客户端和报表工具","websiteurl":"https://chat2db.ai/","description":null,"screenshots":[{"id":"655168da-56fa-449b-a48e-9b8a00cdc621","key":"Connect DB","value":"https://libs.websoft9.com/Websoft9/DocsPicture/zh/chat2db/chat2db-gui-websoft9.png"}],"distribution":[{"id":"fd254ee7-ab78-4eec-a159-01aea39553be","key":"Community","value":"2.0.6"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/chat2db-websoft9.png"},"catalogCollection":{"items":[{"key":"dbtools","title":"管理与迁移","catalogCollection":{"items":[{"key":"database","title":"数据库"}]}}]}},{"sys":{"id":"1dozRAa6FMuX7KkNueYXfy"},"key":"huginn","hot":10000,"trademark":"Huginn","summary":"工作流与任务自动化","overview":"Huginn是一个用于构建代理的系统,可以在线为您执行自动化任务。他们可以阅读网络、监视事件并代表您采取行动。","websiteurl":"https://github.com/huginn/huginn","description":"Think of it as a hackable version of IFTTT or Zapier on your own server","screenshots":[{"id":"b8f4c8aa-fa2c-49dd-a7ad-b64e183490
ch1
25736","key":"Dashboard","value":"http://libs.websoft9.com/Websoft9/DocsPicture/zh/huginn/huginn-gui-websoft9.png"}],"distribution":[{"id":"cb1193c2-6668-4c37-9f14-309cbf2e616d","key":"Community","value":"latest"}],"vcpu":1,"memory":1,"storage":1,"logo":{"imageurl":"https://libs.websoft9.com/Websoft9/logo/product/huginn-websoft9.png"},"catalogCollection":{"items":[{"key":"workflowauto","title":"工作流","catalogCollection":{"items":[{"key":"automation","title":"自动化"}]}}]}}]45

{
  "channel": "ch1",
  "command": "done"
}
46

{
  "channel": "ch1",
  "command": "close"
}
martinpitt commented 10 months ago

@zhaojing1987 That actually succeeded, i.e. it transmitted all the data. However, this can't really be -- the output you posted is "compressed" JSON where all the indentation and line breaks got removed. You said that this is the document that gets sent, which is "human readable" JSON with indentation and line breaks. So something along the way seems to read and re-encode that JSON, it's not just serving that file as-is.

At this point I'm afraid I don't know what else to do. Perhaps you can post the full setup how to reproduce this (nginx, docker, data, etc.).

martinpitt commented 9 months ago

Any updates here? There is nothing actionable for us I'm afraid.

zhaojing1987 commented 9 months ago

Thank you very much. I will close the issue.