「Confluence」- 企业级知识管理和协作平台

认识

官网:https://www.atlassian.com/software/confluence
文档:https://support.atlassian.com/confluence-cloud/resources/
仓库:None

Confluence 是一款由 Atlassian 公司开发的企业级知识管理和协作平台。它旨在帮助团队更好地组织、分享、协作知识,提高工作效率和团队协作能力。在多种环境中,可以使用 Confluence 服务,包括企业内部、软件开发团队、项目管理团队、……。简而言之,Confluence 是款企业内部使用的 Wiki 工具,用于分享知识。

组成

Java + MySQL/ PG / Oracle / SQL Server

构建

服务部署

镜像:https://hub.docker.com/r/haxqer/confluence/tags
仓库:https://github.com/haxqer/confluence

第一步、部署数据库服务

第二步、通过容器运行服务

version: '3.4'
services:
  confluence:
    image: haxqer/confluence:9.2.1
    container_name: confluence-srv
    environment:
      - TZ=Asia/Shanghai
    ports:
      - "8090:8090"
    volumes:
      - ./data:/var/confluence
    restart: always
    networks:
      - network-bridge

networks:
  network-bridge:
    driver: bridge

第三步、浏览器访问服务

  • 按照页面提示,进行相关初始化操作;
  • 针对许可,通过如下方式创建:
docker exec confluence-srv java -jar /var/agent/atlassian-agent.jar \
    -d \
    -p conf \
    -m Hello@world.com \
    -n Hello@world.com \
    -o your-org \
    -s you-server-id-xxxx # 访问 Confluence 初始化页面,其会提供 Server ID 参数

开启日志

Working with Confluence Logs
https://confluence.atlassian.com/doc/working-with-confluence-logs-108364721.html

atlassian-confluence-security.log | This file contains entries related to your users and user directories.
// LDAP 相关日志

性质

协作性 | Confluence 鼓励团队成员之间的协作和交流。多人可以同时编辑同一页面,实时显示编辑者的光标位置,避免冲突和重复工作。用户还可以对页面进行评论和讨论,促进知识的共享和创新。

灵活性 | Confluence 可以根据用户的需求进行灵活的配置和定制。用户可以创建自己的页面结构、空间布局和权限设置,满足不同团队的多样化需求。

安全性 | Confluence 提供了多种安全措施,确保用户数据的安全和保密性。用户可以设置访问权限、加密数据、备份数据等,保护企业的知识产权和商业机密。

可扩展性 | Confluence 可以通过插件和扩展进行扩展和定制。用户可以根据自己的需求安装各种插件,扩展 Confluence 的功能,满足不断变化的业务需求。

应用

企业内部知识管理 | 用于存储和管理企业的各种知识资产,如政策法规、流程规范、技术文档等。方便员工随时查阅,提高工作效率。

项目协作 | 在项目实施过程中,作为团队协作的平台,记录项目进度、问题跟踪、决策过程等。促进项目成员之间的沟通和协作,确保项目顺利进行。

团队沟通与交流 | 可以作为团队的内部论坛,进行技术讨论、经验分享、问题解答等。增强团队凝聚力和创新能力。

培训与教育 | 用于创建培训材料、课程文档等,方便员工进行在线学习和自我提升。也可以作为新员工入职培训的平台,帮助新员工快速了解公司文化和业务流程。

管理界面

Navigating to the Administration Console

如果是管理员账户(或,授予管理权限),则通过右上角的齿轮进入管理配置。

删除 Space 的方法

Delete a Confluence Space | IT@Cornell

Log into Confluence and view the space you want to delete.
In the bottom-left corner of the browser window, click Space tools, then select Overview.
On the Space Tools screen, click Overview near the top of the screen.
Click Delete Space.
On the confirmation screen that appears, click OK.

重新排列 Page 页面

Reorder pages in a tree view

Go to the space and choose Space tools > Reorder pages from the bottom of the sidebar
Expand the branches to locate the page you want to move.
Drag and drop the page to a new position in the tree.

页面编辑器

快捷键 | Shortcuts

<右上角> / ? / Keyboard Shortcuts,其显示可用快捷键。

Emoji Ctrl Shift M

查找替换 Find/Replace

编辑器,右上角,放大镜

参考

豆包 | 认识、组成、性质、应用、改进,这如上五方面来介绍 Confluence 服务 |