首页 > 解决方案 > 如何在 WebProtege 4.0 中列出用户?

问题描述

如 WebProtege github 页面所述,我正在从 docker 图像中运行带有 WebProtege 4.0.0 的服务器。

现在我想访问所有用户的列表,我该怎么做呢?

到目前为止,我发现的最好的事情是尝试共享一个项目,分别输入所有字母并写下出现的名称。

标签: ontologyprotegeprotege4

解决方案


我不确定这是否是最好的方法,但我连接到数据库并以这种方式提取用户。

docker exec -it webprotege_wpmongo_1 bash     # connect to docker containers shell.
mongo                                         # connect to mongodb shell
use webprotege                                # connect to specific database
db.Users.find().toArray()                     # find and show all users.

推荐阅读