ATLASSIAN-Bitbucket 安装

 安装bitbucket

 环境说明

服务器版本:Centos 7.7
其他服务:JDK-8u231,Mysql-5.7.17,Git-2.24.1

下载官方bitbucket二进制包

下载地址:https://www.atlassian.com/zh

image-20200614225539459

image-20200614225602773

image-20200614225752175

 添加执行权限并执行

chmod 755 atlassian-bitbucket-6.10.1-x64.bin && sh atlassian-bitbucket-6.10.1-x64.bin

 安装

image-20200614230358922

image-20200614230424093

image-20200614230500448

image-20200614230550021

 安装数据库插件

tar zxvf mysql-connector-java-5.1.48.tar.gz 
cd mysql-connector-java-5.1.48
cp mysql-connector-java-5.1.48.jar /opt/atlassian/bitbucket/6.10.1/app/WEB-INF/lib/
sudo sh /opt/atlassian/bitbucket/6.10.1/bin/stop-bitbucket.sh
sh /opt/atlassian/bitbucket/6.10.1/bin/start-bitbucket.sh

 创建对应数据库

mysql  -u root -p 
show databases;
create database bitbucket;
alter database bitbucket default collate utf8_bin;
SET GLOBAL tx_isolation='READ-COMMITTED';

 初始化配置

image-20200614230942336

image-20200614231122003

image-20200614231157003

image-20200614231304106

image-20200614231408332

image-20200614231728295

image-20200622205136899

image-20200622205211852

image-20200622205250395

image-20200622205307022

posted @ 2020-07-22 15:49  孤独的小人物  阅读(591)  评论(0)    收藏  举报