confluence 是收费的,但是可以破解使用(提倡购买,支持正版)
本文使用的镜像是基于他人(镜像&破解)打包的,本文的镜像是直接将破解文件置入容器了,省去了自己去捣鼓破解的 jar 包文件的过程,容器部署启动后即可访问。
整个过程请按照以下步骤进行:
1. 数据库创建
先创建文件 /opt/soft/mysql8-confluence/conf.d/custom.cnf
,内容为:
1
2
3
4
5
6
7
8
9
10
|
[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版本),内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 的要求),如下:
1
2
|
set global transaction isolation level read committed;
select @@ global .transaction_isolation;
|
2. 启动 confluence 容器
同上,还是基于 docker-compose 来部署的,内容如下:
1
2
3
4
5
6
7
8
9
10
11
|
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的资料请关注服务器之家其它相关文章!
原文链接:https://blog.csdn.net/catoop/article/details/117777807