docker部署jira(8.0.0)和confluence(6.14.1)

栏目: 数据库 · 发布时间: 5年前

内容简介:记录下这几天搭建的过程jira和confluence是分别两台,数据库也是分开的,数据库是用mysql的rpm的repo添加后安装的,jira和confluence是docker跑的,把破解的jar加到镜像里然后改了下别人的Dockerfile本次安装的版本:

记录下这几天搭建的过程

jira和confluence是分别两台,数据库也是分开的,数据库是用 mysql 的rpm的repo添加后安装的,jira和confluence是 docker 跑的,把破解的jar加到镜像里然后改了下别人的Dockerfile

本次安装的版本:

  • jira-software 8.0.0
  • confluence 6.14.1
  • Docker CE 18.06.02
  • OS CentOS 7.5.1804

系统基本设置

  • 所有防火墙与SELinux 已关闭:

    systemctl disable --now firewalld NetworkManager
    setenforce 0
    sed -ri '/^[^#]*SELINUX=/s#=.+$#=disabled#' /etc/selinux/config
    
  • 安装wget,epel源和基础的一些软件:

    yum install -y wget net-tools git psmisc epel-release vim
    yum install -y jq bash-completion
    

建议升级下内核

yum update -y
reboot

mysql数据库安装

添加repo源

本次数据库采用mysql 5.7.2x

wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
rpm -Uvh mysql57-community-release-el7-11.noarch.rpm

查看源里的版本

[root@jt-jira ~]# yum list mysql-community-server --showduplicates | sort -r
 * updates: mirrors.aliyun.com
mysql-community-server.x86_64           5.7.9-1.el7            mysql57-community
mysql-community-server.x86_64           5.7.25-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.24-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.23-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.22-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.21-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.20-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.19-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.18-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.17-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.16-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.15-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.14-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.13-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.12-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.11-1.el7           mysql57-community
mysql-community-server.x86_64           5.7.10-1.el7           mysql57-community

安装

yum list mysql-community-server

安装完暂时不要启动

配置mysql的客户端连接选项和其余的客户端选项

cat>/etc/my.cnf.d/client.cnf<<EOF
[client]
default-character-set=utf8
EOF

cat>/etc/my.cnf.d/mysql-clients.cnf<<EOF
[mysql]
default-character-set=utf8
EOF

jira数据库配置

mysql的my.cnf配置

官方的建议mysql的配置文件

https://confluence.atlassian.com/adminjiraserver/connecting-jira-applications-to-mysql-5-7-966063305.html

偷懒可以直接运行下面的,自带配置文件下是被添加到 [mysqld] 区域下

cat>>/etc/my.cnf<<EOF
default-storage-engine=INNODB     # 将默认存储引擎设置为InnoDB
character_set_server=utf8mb4      # 指定数据库服务器使用的字符集
innodb_default_row_format=DYNAMIC # 将默认行格式设置为  DYNAMIC
innodb_large_prefix=ON            # 启用大前缀
innodb_file_format=Barracuda      # 将InnoDB文件格式设置为Barracuda
innodb_log_file_size=2G           # innodb_log_file_size至少为2G
EOF
  • 确保sql_mode参数未指定NO_AUTO_VALUE_ON_ZERO,有的话删掉下面这行
    sql_mode = NO_AUTO_VALUE_ON_ZERO  #有的话删掉这行
    

mysql初始化和设置

启动mysql完成初始化

systemctl enable --now mysqld

初始化后可以通过看log来查找默认的root密码

[root@jt-jira ~]# grep 'temporary password' /var/log/mysqld.log 
2019-02-18T09:07:42.064502Z 1 [Note] A temporary password is generated for root@localhost: E#xxxxxxx9Od

运行 mysql_secure_installation 完成基本设置和配置

[root@jt-jira ~]# mysql_secure_installation 

Securing the MySQL server deployment.

Enter password for user root: <–初次运行输入log里的root密码

The existing password for the user account root has expired. Please set a new password.

New password: <– 设置root用户的密码,复杂度不够可能会被再次要求输入

Re-enter new password: <– 再输入一次你设置的密码
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Using existing password for root.

Estimated strength of the password: 100  
Change the password for root ? ((Press y|Y for Yes, any other key for No) : No <– 输入No,前面设置过root密码了

 ... skipping.
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y <– 是否删除匿名用户,输入y回车
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y <–是否禁止root远程登录,看需求,如果开发用得多就不禁止,这里动得少我是直接禁止掉的
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.


Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y  <– 是否删除test数据库,输入y回车
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y 是否重新加载权限表,输入y回车
Success.

All done!

删除log里的密码

sed -ri '/temporary password/d' /var/log/mysqld.log

创建jira的库和用户名和密码以及权限

mysql -uroot -p

mysql> create database jira default character set utf8 collate utf8_bin;
mysql> grant all on jira.* to 'jira'@'%' identified by 'v8xxxxxxx1';

安装docker

  • 所有机器 需要设定 /etc/sysctl.d/docker.conf 的系统参数。
    cat <<EOF > /etc/sysctl.d/docker.conf
    net.ipv4.ip_forward = 1
    net.bridge.bridge-nf-call-ip6tables = 1
    net.bridge.bridge-nf-call-iptables = 1
    fs.may_detach_mounts = 1
    EOF
    sysctl --system
    
  • 这里利用docker的官方安装脚本来安装一次来添加repo,然后安装docker版本,选择你要安装的docker版本即可

    curl -fsSL "https://get.docker.com/" | bash -s -- --mirror Aliyun && yum autoremove docker-ce -y
    yum list docker-ce --showduplicates | sort -r
    yum install -y docker-ce-<VERSION STRING>
    
    • 配置加速源:
      mkdir -p /etc/docker/
      cat>/etc/docker/daemon.json<<EOF
      {
        "registry-mirrors": ["https://fz5yth0r.mirror.aliyuncs.com"],
        "storage-driver": "overlay2",
        "storage-opts": [
          "overlay2.override_kernel_check=true"
        ],
        "log-driver": "json-file",
        "log-opts": {
          "max-size": "100m",
          "max-file": "3"
        }
      }
      EOF
      

运行的话推荐使用docker-compose方便交接而不是命令行去docker run

sudo curl -L "https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
  • 设置docker开机启动,CentOS安装完成后docker需要手动设置docker命令补全:
cp /usr/share/bash-completion/completions/docker /etc/bash_completion.d/
systemctl enable --now docker

jira部署

先说说jira的docker镜像这块

jira镜像改造过程说明

https://hub.docker.com/r/cptactionhank/atlassian-jira-software

镜像的Dockerfile参照上面dockerhub上的

相关文件在我github上 https://github.com/zhangguanzhang/Dockerfile/tree/master/atlassian-jira

构建的话默认是software版本,把破解的jar包COPY进去,改了下mysql的jdbc驱动使用最新的,entrypoint脚本增加环境变量方便启动过程执行的bash来debug。jira本质上有个tomcat,时区会不对显示的+0000,需要给 java 运行选项加上 -Duser.timezone=GMT+08 ,分析了下启动过程发现如下步骤:

+ '[' -r /opt/atlassian/jira/bin/setenv.sh ']'
+ . /opt/atlassian/jira/bin/setenv.sh


$ cat /opt/atlassian/jira/bin/setenv.sh
...
JAVA_OPTS="-Xms${JVM_MINIMUM_MEMORY} -Xmx${JVM_MAXIMUM_MEMORY} ${JVM_CODE_CACHE_ARGS} ${JAVA_OPTS} ${JVM_REQUIRED_ARGS} ${DISABLE_NOTIFICATIONS} ${JVM_SUPPORT_RECOMMENDED_ARGS} ${JVM_EXTRA_ARGS} ${JIRA_HOME_MINUSD} ${START_JIRA_JAVA_OPTS}"
...
export JAVA_OPTS

所以我在Dockerfile里通过ENV设置了JAVA_OPTS=’-Duser.timezone=GMT+08’给最终运行的java主进程增加了选项和参数调整到正确的时区。而通过运行容器看到LANG已经被设置为C.UTF-8即可完美的支持中文不需要我们声明环境变量

[root@jt-jira jira]# docker exec jira sh -c 'echo $LANG'
C.UTF-8

compose的yml为如下,因为主进程是java,所以用了init来运行tini,使用docker volume去存储数据和log

version: '3.7'
services:
  jira:
    image: zhangguanzhang/atlassian-jira-software:8.0.0
    container_name: jira
    hostname: jira
    init: true
    volumes:
      - JIRA_HOME_data:/var/atlassian/jira
      - JIRA_log_data:/opt/atlassian/jira/logs
      - /etc/localtime:/etc/localtime:ro
    ports:
      - '8080:8080'
    logging:
      driver: json-file
      options:
        max-file: '3'
        max-size: 100m
volumes:
  JIRA_HOME_data: {}
  JIRA_log_data: {}

启动会要一段时间,启动后设置都一样,到了输入许可证的界面的时候

docker部署jira(8.0.0)和confluence(6.14.1)

点击下面的蓝色超链接会跳转到使用许可证申请界面,如果内网的话右击蓝色复制链接地址在公网打开(需要梯子才能访问许可证申请页面)

docker部署jira(8.0.0)和confluence(6.14.1) docker部署jira(8.0.0)和confluence(6.14.1)

复制了回来粘贴下一步即可,设置完成后可以看到是无限的

docker部署jira(8.0.0)和confluence(6.14.1)

confluence

数据库方面大致一样,不同在于my.cnf配置

https://confluence.atlassian.com/doc/database-setup-for-mysql-128747.html
cat>>/etc/my.cnf<<EOF
character-set-server=utf8     
collation-server=utf8_bin      # 将默认字符集指定为UTF-8
default-storage-engine=INNODB  # 将默认存储引擎设置为InnoDB
max_allowed_packet=256M        # max_allowed_packet至少为256M
innodb_log_file_size=2GB       # innodb_log_file_size 至少为2GB
transaction-isolation=READ-COMMITTED  # 确保数据库的全局事务隔离级别已设置为READ-COMMITTED
binlog_format=row              # 检查二进制日志记录格式是否配置为使用“基于行”的二进制日志记录
EOF
  • 确保sql_mode参数未指定NO_AUTO_VALUE_ON_ZERO,有的话删掉下面这行
    sql_mode = NO_AUTO_VALUE_ON_ZERO  #有的话删掉这行
    

启动数据库,然后和上面jira一样初始化

  • 创建一个空的Confluence数据库模式(例如confluence):

    CREATE DATABASE <database-name> CHARACTER SET utf8 COLLATE utf8_bin;
    
  • 创建Confluence数据库用户(例如confluenceuser):

    GRANT ALL PRIVILEGES ON <database-name>.* TO '<confluenceuser>'@'localhost' IDENTIFIED BY '<password>';
    

confluence镜像方面

https://hub.docker.com/r/cptactionhank/atlassian-confluence/dockerfile

改的上面这个镜像,相关问就在我github上 https://github.com/zhangguanzhang/Dockerfile/blob/master/atlassian-confluence

大致和jira一样,破解在网上搜到了两种方式

  1. 是市面上替换decoder那个jar的流程,路径为 /opt/atlassian/confluence/confluence/WEB-INF/lib/atlassian-extras-decoder-api-3.4.1.jar 。市面上是把安装完路径的jar拿出来用注册机打pathc后换回去
  2. 我在市面上下载的破解包里有个类似jira的破解jar文件 atlassian-extras-3.2.jar ,网上搜到了另一种破解思路是这个文件扔进去前删掉 atlassian-extras*.jar ,这里找 https://mritd.me/ 漠然大佬帮我把decoder的jar反编译改了内容后替换原decoder那个jar后用注册机生成许可证即,官网申请的使用许可证不行,因为反编译的时候改了签名
    confluence的compose.yml如下
    version: '3.7'
    services:
      confluence:
        image: zhangguanzhang/atlassian-confluence:6.14.1
        container_name: confluence
        hostname: confluence
        init: true
        volumes:
          - CONF_HOME_data:/var/atlassian/confluence
          - CONF_log_data:/opt/atlassian/confluence/logs
          - /etc/localtime:/etc/localtime:ro
        ports:
          - '8090:8090'
        logging:
          driver: json-file
          options:
            max-file: '3'
            max-size: 100m
    volumes:
      CONF_HOME_data: {}
      CONF_log_data: {}
    

起来后页面设置,然后用注册机生成注册码填进去即可,在有图形界面的机器有java环境下运行keygen那个jar,可以从我github上下载

docker部署jira(8.0.0)和confluence(6.14.1)

在右上角的齿轮小图标里一般设置左侧栏里往下翻到授权细节查看如下图所示:

docker部署jira(8.0.0)和confluence(6.14.1)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法交易与套利交易

算法交易与套利交易

赵胜民 / 厦门大学出版社 / 2010-9 / 35.00元

《算法交易与套利交易》主要介绍算法交易和一些套利交易的策略,以便于读者对相关方面的内容进行阅读和学习。在《算法交易与套利交易》的第一部分,我们回顾了投资学一些相关的基本内容。其中,前两章介绍了证券投资的收益和风险等特征,以及马可维茨的最优资产配置模型。第3章则介绍了股票投资分析当中常用的资本资产定价模型(CAPM)、套利定价模型(APT),以及因素模型。然后,第4、5章分别讲到了金融证券估值模型、......一起来看看 《算法交易与套利交易》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具