博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 7 Confluence搭建
阅读量:6878 次
发布时间:2019-06-26

本文共 2755 字,大约阅读时间需要 9 分钟。

系统环境

#cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) # uname -r3.10.0-693.21.1.el7.x86_64

Confluence版本:5.6.6

Confluence下载地址:
atlassian所有产品的中文语言包:#/

安装

  • 关闭防火墙
# systemctl stop firewalld
# systemctl disable firewalld
  • 安装Java环境
# yum -y install java
# java -versionopenjdk version "1.8.0_171"OpenJDK Runtime Environment (build 1.8.0_171-b10)OpenJDK 64-Bit Server VM (build 25.171-b10, mixed mode)
  • 安装数据库
# yum install mariadb* -y
# systemctl start mariadb# systemctl enable mariadbCreated symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
# mysql_secure_installation

mysql初始化完成后登录数据

# mysql -uroot -pEnter password:Welcome to the MariaDB monitor. Commands end with ; or \g.Your MariaDB connection id is 10Server version: 5.5.56-MariaDB MariaDB ServerCopyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.> create database confluence default character set utf8;> grant all on confluence.* to 'confluenceuser'@'%' identified by 'redhat12345' with grant option;> grant all on confluence.* to 'confluenceuser'@localhost identified by 'redaht12345' with grant option;Query OK, 0 rows affected (0.00 sec)> flush privileges;Query OK, 0 rows affected (0.00 sec)
# vim /etc/my.cnfbinlog_format=mixed
# systemctl restart mariadb
  • 上传包文件:
# chmod 755 atlassian-confluence-5.6.6-x64.bin
# ./atlassian-confluence-5.6.6-x64.binUnpacking JRE ...Starting Installer ...May 18, 2018 10:57:44 PM java.util.prefs.FileSystemPreferences$1 runINFO: Created user preferences directory.May 18, 2018 10:57:44 PM java.util.prefs.FileSystemPreferences$2 runINFO: Created system preferences directory in java.home.This will install Confluence 5.6.6 on your computer.OK [o, Enter], Cancel [c]oChoose 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]1See where Confluence will be installed and the settings that will be used.Installation Directory: /opt/atlassian/confluenceHome Directory: /var/atlassian/application-data/confluenceHTTP Port: 8090RMI Port: 8000Install as service: YesInstall [i, Enter], Exit [e]iExtracting files ...Please wait a few moments while Confluence starts up.Launching Confluence ...Installation of Confluence 5.6.6 is completeYour installation of Confluence 5.6.6 is now ready and can be accessed viayour browser.Confluence 5.6.6 can be accessed at http://localhost:8090Finishing installation ...

CentOS 7 Confluence搭建

CentOS 7 Confluence搭建

在Windows命令行中输入命令提示“java不是内部命令”,请在oracle官网下载java并安装

CentOS 7 Confluence搭建

CentOS 7 Confluence搭建
CentOS 7 Confluence搭建

复制Key到Web安装界面点击Next

CentOS 7 Confluence搭建

CentOS 7 Confluence搭建
CentOS 7 Confluence搭建
CentOS 7 Confluence搭建
CentOS 7 Confluence搭建
CentOS 7 Confluence搭建
CentOS 7 Confluence搭建
CentOS 7 Confluence搭建

转载于:https://blog.51cto.com/roben/2159998

你可能感兴趣的文章
软件缺陷分析-软件测试之犯罪心理学
查看>>
Python实战之自己主动化评论
查看>>
spring boot下使用logback或log4j生成符合Logstash标准的JSON格式
查看>>
iOS面试题合集(77道)
查看>>
hadoop安装及配置入门篇
查看>>
[原] KVM 虚拟化原理探究(2)— QEMU启动过程
查看>>
使用Java程序调用MatLab
查看>>
什么是C++虚函数、虚函数的作用和使用方法
查看>>
Atitit.cto 与技术总监的区别
查看>>
关于【自证清白】
查看>>
手把手教你crontab排障
查看>>
订单编号
查看>>
纪念我曾经的 JAVA 姿势--转
查看>>
js 如何清除setinterval
查看>>
我为NET狂官方面试题-数据库篇答案
查看>>
玩转iOS开发:iOS开发中的装逼技术 - RunTime(一)
查看>>
CSS实现水平垂直居中的1010种方式(史上最全)
查看>>
BCH曼谷矿工会议的积极方面:社区彼此更加了解
查看>>
Android之观察者模式
查看>>
微信公众号支付开发全过程(Java 版)
查看>>