docker部署confluence的完整步驟
Confluence 是收費的,但是可以破解使用(提倡購買,支持正版)
本文使用的鏡像是基於他人(鏡像&破解)打包的,本文的鏡像是直接將破解文件置入容器瞭,省去瞭自己去搗鼓破解的 jar 包文件的過程,容器部署啟動後即可訪問。
整個過程請按照以下步驟進行:
1. 數據庫創建
先創建文件 /opt/soft/mysql8-confluence/conf.d/custom.cnf
,內容為:
[mysqld] default-authentication-plugin=mysql_native_password lower-case-table-names=1 skip-name-resolve #skip-grant-tables max_connections=1000 max_user_connections=850 max_connect_errors=1000 max_allowed_packet=100M innodb_log_file_size=256M
如果你已經有MySQL數據庫,這步可以跳過。
為瞭省事及可移植性,本文使用 docker-compose 創建MySQL數據庫(8.0版本),內容如下
version: '3.7' services: mysql8-confluence: image: harbor.goodcol.com:81/gukesoft/mysql8:8.0.16 container_name: mysql8-confluence ports: - 3308:3306 volumes: - /opt/soft/mysql8-confluence/conf.d:/etc/mysql/conf.d - /opt/soft/mysql8-confluence/data:/var/lib/mysql security_opt: - seccomp:unconfined environment: TZ: Asia/Shanghai MYSQL_ROOT_PASSWORD: 'root123456' command: --default-authentication-plugin=mysql_native_password --lower-case-table-names=1
用工具連接數據庫,先創建db名稱為 confluence
(註意字符集為 utf8mb4
排序規則為 utf8mb4_bin
),然後配置數據庫的隔離級別(這是 confluence 的要求),如下:
set global transaction isolation level read committed; select @@global.transaction_isolation;
2. 啟動 confluence 容器
同上,還是基於 docker-compose 來部署的,內容如下:
version: '3.7' services: confluence: image: xzxiaoshan/confluence-agented:7.9.3 container_name: confluence environment: TZ: Asia/Shanghai ports: - 8090:8090 volumes: - /opt/confluence:/var/atlassian/confluence
3. 訪問 confluence 進行配置和破解
瀏覽器打開 http://192.168.1.129:8090(這裡用你自己的IP),然後參照下圖步驟:
如果你數據庫連接信息需要修改,可以到
/opt/confluence/confluence.cfg.xml
文件中修改,然後重啟服務
註意數據庫url連接中用的參數是utf8,不是utf8mb4
url 中的useUnicode=true&characterEncoding=utf8
是避免中文亂碼問題的
在 xml 文件中修改url的時候,註意&
符號應該是&
附:內置的破解的 agent 詳見(https://gitee.com/pengzhile/atlassian-agent)
以上就是docker部署confluence的完整步驟的詳細內容,更多關於docker部署confluence的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- docker-compose基於MySQL8部署項目的實現
- Docker搭建部署Node項目的方法步驟
- docker-compose搭建mongodb、mysql的詳細過程
- 簡簡單單使用Docker部署Confluence
- 使用Docker Compose搭建 Confluence的教程