工具类—confluence 搭建(linux)

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介: confluence 搭建(linux)

环境要求


操作系统:contos7


数据库:5.5.60-MariaDB 经测试mysql5.7也可以 mysql8.0.12出现无法连接问题


java版本: jdk-1.8


confluence版本:confluence6.7.1




安装步骤


1.安装jdk环境,配置环境变量


2.给安装文件分配可执行权限,执行confluence安装文件 linux版本(atlassian-confluence-6.7.1-x64.bin)


chmod +x atlassian-confluence-6.7.1-x64.bin

./atlassian-confluence-6.7.1-x64.bin


Unpacking JRE ...

Starting Installer ...


o确定安装,c取消

This will install Confluence 6.7.1 on your computer.

OK [o, Enter], Cancel [c]

o

Click Next to continue, or Cancel to exit Setup.


选择2自定义安装

Choose the appropriate installation or upgrade option.

Please choose one of the following:

Express Install (uses default settings) [1],

Custom Install (recommended for advanced users) [2, Enter],

Upgrade an existing Confluence installation [3]

2


指定安装的目录,会自动创建,不输入直接回车就是使用默认路径

Select the folder where you would like Confluence 6.9.1 to be installed,

then click Next.

Where should Confluence 6.7.1 be installed?

[/opt/atlassian/confluence]



指定路径存储数据

Default location for Confluence data

[/var/atlassian/application-data/confluence]



使用默认的端口,8090和8000

Configure which ports Confluence will use.

Confluence requires two TCP ports that are not being used by any other

applications on this machine. The HTTP port is where you will access

Confluence through your browser. The Control port is used to Startup and

Shutdown Confluence.

Use default ports (HTTP: 8090, Control: 8000) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2]

1


安装为后台进程,可后台运行

Confluence can be run in the background.

You may choose to run Confluence as a service, which means it will start

automatically whenever the computer restarts.

Install Confluence as Service?

Yes [y, Enter], No [n]

y


Extracting files ...

                                                                         

Please wait a few moments while we configure Confluence.


确定开始安装

Installation of Confluence 6.7.1 is complete

Start Confluence now?

Yes [y, Enter], No [n]

y


Please wait a few moments while Confluence starts up.

Launching Confluence ...


Installation of Confluence 6.7.1 is complete

Your installation of Confluence 6.7.1 is now ready and can be accessed via

your browser.

Confluence 6.7.1 can be accessed at http://localhost:8090

Finishing installation ...


3.破解jar包


找到confluence安装目录 (默认安装目录举例)


剪切jar包(改名字破解)


mv /opt/atlassian/confluence/concluence/WEB-INF/lib/atlassian-extras-decoder-v2-3.3.0.jar /opt/atlassian-extras-2.4.jar


把jar包复制到windows环境下(有jdk1.8环境),在windows环境下执行破解工具启动命令


confluence_keygen.jar是破解工具的jar包


java -jar confluence_keygen.jar


点击.patch,选择atlassian-extras-2.4.jar文件,点击打开,jar文件破解成功


破解成功后,jar包会被替换,把替换后的jar放回linux环境下原目录下 改回原来的名字


mv /opt/atlassian-extras-2.4.jar /opt/atlassian-extras-decoder-v2-3.3.0.jar

mv /opt/atlassian-extras-decoder-v2-3.3.0.jar /opt/atlassian/confluence/concluence/WEB-INF/lib/


破解工具窗口不要关闭,后面还有用


4.上传mysql驱动


我用的 mysql-connector-java-5.1.48.jar 上传至/opt/atlassian-extras-decoder-v2-3.3.0.jar /opt/atlassian/confluence/concluence/WEB-INF/lib/下


5.重启服务


sh /opt/atlassian/confluence/bin/stop-confluence.sh

sh /opt/atlassian/confluence/bin/start-confluence.sh


6.安装数据库


正常安装后


create database confluence default character set utf8 collate utf8_bin;

grant all on confluence.* to 'confluence'@'%' identified by '123456';

flush privileges;

SET GLOBAL tx_isolation='READ-COMMITTED';


创建一个utf8字符集的数据库,字符集必须utf8,否则安装时连接数据库报错


7.安装产品


访问 localhost:8090(安装时默认的端口号)


1.中文,安装产品
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
消息中间件 数据采集 监控
ELK搭建(五):linux系统日志监控平台搭建
现在的生产系统多使用linux系统,在实际生产过程中我们除了需要监控一些业务日志之外,有时也需要监控linux系统本身的日志,来帮助我们进行一些排错和判断。那么这一期,我们就针对linux系统日志监控平台的搭建来进行讲解 与往期一样,我们针对实际搭建教程更多是快速搭建为主,不做过多的原理性讲解,这一类讲解我们放到后期单独开几期博客来探讨。
1113 0
ELK搭建(五):linux系统日志监控平台搭建
|
运维 Linux 应用服务中间件
Linux的完全本地仓库搭建指南(科普扫盲贴)
Linux的完全本地仓库搭建指南(科普扫盲贴)
784 0
Linux的完全本地仓库搭建指南(科普扫盲贴)
|
网络协议 Linux 网络安全
【Linux】软件安装、仓库搭建、服务器配置(下)
章目录 前言 一、定义 二、软件安装 2.1 rpm
433 0
【Linux】软件安装、仓库搭建、服务器配置(下)
|
Java Linux 网络安全
Linux(Centos7)下搭建SVN服务器
Linux(Centos7)下搭建SVN服务器
296 1
Linux(Centos7)下搭建SVN服务器
|
Linux 数据安全/隐私保护 Docker
Linux上搭建泰拉瑞亚服务端详细指南
Linux上搭建泰拉瑞亚服务端详细指南
1618 0
|
Java Linux Go
Linux下使用nexus搭建maven私服
Linux下使用nexus搭建maven私服
386 0
Linux下使用nexus搭建maven私服
|
网络协议 安全 关系型数据库
如何搭建Cloudreve私有云盘(Linux)
Cloudreve以最低的成本快速搭建公私兼备的网盘系统,听说很多人都在用,今天教大家如何搭建Cloudreve网盘系统。
1170 0
如何搭建Cloudreve私有云盘(Linux)
|
网络协议 Unix Linux
Linux下搭建samba服务器
Linux下搭建samba服务器
281 0
Linux下搭建samba服务器
|
关系型数据库 MySQL Java
Linux快速搭建javaWeb开发环境
Linux快速搭建javaWeb开发环境
148 2
|
安全 关系型数据库 MySQL
Linux-从零开始搭建wordpress博客
安装Apache、PHP、Mysql以及安装wordpress。
下一篇
DataWorks