Complete steps for deploying confluence with docker

Complete steps for deploying confluence with docker

Confluence is paid, but it can be cracked for use (purchase is recommended, and genuine versions are supported)

The image used in this article is packaged based on others (image & cracking). The image in this article directly puts the cracked file into the container, eliminating the need to fiddle with the cracked jar package file yourself. It can be accessed after the container is deployed and started.

Please follow the steps below for the whole process:

1. Database creation

First create the file /opt/soft/mysql8-confluence/conf.d/custom.cnf with the following content:

[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

If you already have a MySQL database, you can skip this step.

For ease of use and portability, this article uses docker-compose to create a MySQL database (version 8.0), as follows

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

Use the tool to connect to the database. First, create a database named confluence (note that the character set is utf8mb4 and the collation is utf8mb4_bin ), and then configure the isolation level of the database (this is the requirement of confluence), as follows:

set global transaction isolation level read committed;
select @@global.transaction_isolation;

2. Start the confluence container

As above, it is still deployed based on docker-compose, the content is as follows:

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. Access confluence to configure and crack

Open the browser to http://192.168.1.129:8090 (use your own IP here), and then follow the steps below:

insert image description here

If you need to modify the database connection information, you can modify it in the /opt/confluence/confluence.cfg.xml file, and then restart the service. Note that the parameter used in the database url connection is utf8, not utf8mb4.
useUnicode=true&characterEncoding=utf8 in the url is to avoid the problem of Chinese garbled characters. When modifying the url in the xml file, please note that the & symbol should be &

Appendix: For details of the built-in cracked agent, see (https://gitee.com/pengzhile/atlassian-agent)

The above is the detailed content of the complete steps of Docker deployment of Confluence. For more information about Docker deployment of Confluence, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Implementation steps for docker deployment of springboot and vue projects
  • How to deploy MongoDB container with Docker
  • Detailed process of installing and deploying onlyoffice in docker
  • How to deploy code-server using docker

<<:  Solve the problem of using less in Vue

>>:  Understanding MySQL clustered indexes and how clustered indexes grow

Recommend

【HTML element】Detailed explanation of tag text

1. Use basic text elements to mark up content Fir...

Vue-CLI3.x automatically deploys projects to the server

Table of contents Preface 1. Install scp2 2. Conf...

Vue implements bottom query function

This article example shares the specific code of ...

Use Firebug tool to debug the page on iPad

How to debug a page on iPad? When using iOS 5, you...

Mysql command line mode access operation mysql database operation

Usage Environment In cmd mode, enter mysql --vers...

Summary of several key points about mysql init_connect

The role of init_connect init_connect is usually ...

How a select statement is executed in MySQL

Table of contents 1. Analyzing MySQL from a macro...

A brief understanding of MySQL storage field type query efficiency

The search performance from fastest to slowest is...

Are the value ranges of int(3) and int(10) the same in mysql

Table of contents Question: answer: Reality: Know...

js to achieve simulated shopping mall case

Friends who are learning HTML, CSS and JS front-e...

Summary of Git commit log modification methods

Case 1: Last submission and no push Execute the f...

Detailed explanation of MySQL batch SQL insert performance optimization

For some systems with large amounts of data, the ...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...