Based on Docker installation, deployment, cracking Confluence 6.6 graphic tutorial

Original: http://www.itmuch.com/work/confluence-crack/

Licensed under CC BY 3.0 CN. It can be freely reproduced and quoted, but the author must be signed and the original address of the article should be indicated.

Confluence is arguably the most powerful wiki system out there, but it's a paid software. This article explains how to install, deploy, and crack Confluence. The deployment environment is Docker.

WARNING

  • It is not recommended that you use the cracked version in the company, use the paid version ^_^. If you don't want to pay, you can try open source XWik, which is also very powerful.
  • This article only provides ideas and steps for cracking, and cracking patches atlassian-extras-decoder-v2-3.2.jarare not provided. As smart as you, you can definitely find them on Google, Baidu, bing, and ask.

Recently, the company wanted to migrate Confluence to the Docker environment, and at the same time wanted to upgrade it sequentially. Although the company uses a paid version, I also studied how to crack it by the way. Below are the steps, the version used is Confluence 6.6.

The cracking of Confluence is relatively simple, you only atlassian-extras-decoder-v2-3.2.jarneed .

Prepare

Dockerfile

Below is the Dockerfile.

FROM atlassian/confluence-server
MAINTAINER 周立<[email protected]>
# 传入破解补丁
ADD crack/atlassian-extras-decoder-v2-3.2.jar ${CONFLUENCE_INSTALL_DIR}/confluence/WEB-INF/lib/atlassian-extras-decoder-v2-3.2.jar
# 设置文件属组
RUN chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/confluence/WEB-INF/lib/atlassian-extras-decoder-v2-3.2.jar

CMD ["/entrypoint.sh", "-fg"]
ENTRYPOINT ["/sbin/tini", "--"]

docker-compose.yml

To make configuration easier, we use Docker Compose to orchestrate Confluence. Here is the docker-compose.yml

version: '2'

services:
  mysql:
    image: mysql:5.7
    volumes:
      - ./mysql/:/etc/mysql/conf.d/
      - ./db_data:/var/lib/mysql
    restart: always
    ports:
      - "3306:3306"
    environment:
      MYSQL_ROOT_PASSWORD: root123
      MYSQL_DATABASE: confluence
      MYSQL_USER: confluence
      MYSQL_PASSWORD: confluence123
  confluence:
    build: .
    ports:
      - "8090:8090"

The configuration file used by MySQL my.cnf:

[client]
default-character-set = utf8

[mysql]
default-character-set = utf8

[mysqld]
character_set_server = utf8
collation-server = utf8_bin
transaction_isolation = READ-COMMITTED

It should be noted that Confluence needs to be used utf8_bin, and the transaction isolation policy should be set to READ-COMMITTED(BTW, expand, do you still remember Spring's transaction propagation feature? If you don't remember, please open your browser and search)

Install

Installing Confluence is relatively simple. Here are the steps:

  1. As shown in the figure below, select it in the upper right corner 中文, and then it will become a Chinese interface.

    Select Product Installation and click Next.

  2. Install the plugin. Install the plugin you want. Figure it out, I didn't install it when I experimented.

Check the plugins you want to install and click Next:

  1. At this point, an interface similar to the following will appear, let us enter the authorization code. No this one...

  1. Click the Get Trial Authorization button in the picture above, jump to Atlassianthe official website of , and register an account, an interface similar to the following will be displayed:

For Server ID, enter the Server ID in the previous step. After entering it, click Generate License.

  1. After clicking, an interface similar to the following will pop up

  1. Paste the generated License Key in the third step, and click Next, and an interface similar to the following will be displayed.

  2. Configure the database, the account/password is confluence/confluence123

  3. Configure Admin Account

  4. Click Manage Users and Groups in Confluence, then enter your administrator account password, and Confluence is installed.

crack verification

  1. Click on the upper right corner 一般配置, as shown below:

  2. If you can see a page similar to the following, the crack is successful:

Reference documentation

http://chenjiangtao.com/blog/2017/confluence%E7%A0%B4%E8%A7%A3.html

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325089465&siteId=291194637