centos6.9安装confluence 6.5.0

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,高可用系列 2核4GB
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介:

公司准备实行敏捷开发,经过一番工具选择,最终选定了jira和confluence,jira用作项目管理,confluence用于分享管理。此文介绍confluence 6.5.0(其他版本安装方法一样)安装配置:
备注:建议最低2核CPU、4GB内存。小了负载很高。


一、环境准备(如果安装jira的时候已经做了,就不需要做;但是要创建confluence的数据库和用户)

1、关闭或设置防火墙、关闭selinux。


2、安装jdk8环境(安装oracle的java,默认的openjdk不行)。

(1)这里下载的是rpm包。

[root@agile soft]# wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/jdk-8u151-linux-x64.rpm

[root@agile soft]# rpm -ivh jdk-8u151-linux-x64.rpm 
Preparing...                ########################################### [100%]
   1:jdk1.8.0_151           ########################################### [100%]
Unpacking JAR files...
    tools.jar...
    plugin.jar...
    javaws.jar...
    deploy.jar...
    rt.jar...
    jsse.jar...
    charsets.jar...
    localedata.jar...


(2)设置环境变量。
[root@agile soft]# vim /etc/profile

JAVA_HOME=/usr/java/jdk1.8.0_151
JAVA_BIN=/usr/java/jdk1.8.0_151/bin
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/bin:/sbin/
CLASSPATH=.:/lib/dt.jar:/lib/tools.jar
export JAVA_HOME JAVA_BIN PATH CLASSPATH

(3)使环境变量生效。

[root@agile soft]# source /etc/profile


(4)查看java版本。

[root@agile soft]# java -version
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)



3、安装mysql 5.6

(1)安装mysql的yum源,这个源包括5.5、5.6、5.7版本:

备注:如果要专门下载某个版本,可以到http://dev.mysql.com/downloads/repo/yum下载。

1
2
3
4
5
[root@agile ~] # rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpm
Retrieving http: //repo .mysql.com /mysql-community-release-el6 .rpm
warning:  /var/tmp/rpm-tmp .C87LHo: Header V3 DSA /SHA1  Signature, key ID 5072e1f5: NOKEY
Preparing...                 ########################################### [100%]
    1:mysql-community-release ########################################### [100%]


(2)打开mysql的yum源文件,如果要安装mysql哪个版本,选择后把里面的enable设置为1。

备注:或者用yum-config-manager命令方式开启或关闭。

yum-config-manager --disable mysql55-community
yum-config-manager --enable mysql56-community
yum-config-manager --disable mysql57-community

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[root@agile ~] #vim /etc/yum.repos.d/mysql-community.repo
# Enable to use MySQL 5.5
[mysql55-community]
name=MySQL 5.5 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .5-community /el/6/ $basearch/
enabled=0
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# Enable to use MySQL 5.6
[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .6-community /el/6/ $basearch/
enabled=1
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .7-community /el/6/ $basearch/
enabled=0
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql


(3)yum安装mysql组件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@agile ~] #yum install mysql-community-client mysql-community-devel mysql-community-server php-mysql
正在安装:
  mysql-community-client                    x86_64               5.6.38-2.el6                 mysql56-community                18 M
  mysql-community-devel                     x86_64               5.6.38-2.el6                 mysql56-community               3.3 M
  mysql-community-libs                      x86_64               5.6.38-2.el6                 mysql56-community               1.9 M
      replacing  mysql-libs.x86_64 5.1.73-8.el6_8
  mysql-community-libs-compat               x86_64               5.6.38-2.el6                 mysql56-community               1.6 M
      replacing  mysql-libs.x86_64 5.1.73-8.el6_8
  mysql-community-server                    x86_64               5.6.38-2.el6                 mysql56-community                55 M
  php-mysql                                 x86_64               5.3.3-49.el6                 base                             86 k
为依赖而安装:
  mysql-community-common                    x86_64               5.6.38-2.el6                 mysql56-community               308 k
  numactl                                   x86_64               2.0.9-2.el6                  base                             74 k
  php-common                                x86_64               5.3.3-49.el6                 base                            530 k
  php-pdo                                   x86_64               5.3.3-49.el6                 base                             80 k


(4)启动mysql命令,并设置开机自启动。

1
2
[root@agile ~] #service mysqld start
[root@agile ~] #chkconfig mysqld on


(5)mysql设置root密码。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[root@agile ~] #mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
       SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password  for  the root user.  If you've just installed MySQL, and
you haven't  set  the root password yet, the password will be blank,
so you should just press enter here.
Enter current password  for  root (enter  for  none): 
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y /n ] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
  ... Success!
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 ? [Y /n ] 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? [Y /n ] y
  ... 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? [Y /n ] y
  - Dropping  test  database...
ERROR 1008 (HY000) at line 1: Can 't drop database ' test '; database doesn' t exist
  ... Failed!  Not critical, keep moving...
  - 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? [Y /n ] y
  ... Success!
All  done !  If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks  for  using MySQL!
Cleaning up...


(6)mysql设置。

在[mysqld]下面加入这几行:

1
2
3
4
5
6
[root@agile ~] # vi /etc/my.cnf
init_connect= 'SET collation_connection = utf8_unicode_ci'
init_connect= 'SET NAMES utf8'
character- set -server=utf8
collation-server=utf8_unicode_ci
skip-character- set -client-handshake

在这2个文件里面分别加入如下内容:

1
2
3
4
5
6
[root@agile ~] # vi /etc/my.cnf.d/client.cnf
[client]
default-character- set =utf8
[root@agile my.cnf.d] # vi /etc/my.cnf.d/mysql-clients.cnf
[mysql]
default-character- set =utf8

重启mysql,并查看字符集。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[root@agile my.cnf.d] # service mysqld restart
停止 mysqld:                                              [确定]
正在启动 mysqld:                                          [确定]
[root@agile my.cnf.d] # mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection  id  is 2
Server version: 5.6.38 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and /or  its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and /or  its
affiliates. Other names may be trademarks of their respective
owners.
Type  'help;'  or  '\h'  for  help. Type  '\c'  to  clear  the current input statement.
mysql> show variables like  "%character%" ;show variables like  "%collation%" ;
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       |  /usr/share/mysql/charsets/  |
+--------------------------+----------------------------+
8 rows  in  set  (0.08 sec)
+----------------------+-----------------+
| Variable_name        | Value           |
+----------------------+-----------------+
| collation_connection | utf8_unicode_ci |
| collation_database   | utf8_unicode_ci |
| collation_server     | utf8_unicode_ci |
+----------------------+-----------------+
3 rows  in  set  (0.02 sec)
mysql>


4、mysql中创建confluence数据库和用户,并验证。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
mysql> create database confluence default character  set  utf8 collate utf8_bin;
Query OK, 1 row affected (0.11 sec)
mysql> grant all on confluence.* to  'confluence' @ '%'  identified by  'confluencepasswd' ;
Query OK, 0 rows affected (0.09 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
|  confluence         |
| jira               |
| mysql              |
| performance_schema |
+--------------------+
4 rows  in  set  (0.07 sec)
[root@agile ~] # mysql -u confluence -h localhost -pconfluencepasswd
Warning: Using a password on the  command  line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection  id  is 4
Server version: 5.6.38 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and /or  its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and /or  its
affiliates. Other names may be trademarks of their respective
owners.
Type  'help;'  or  '\h'  for  help. Type  '\c'  to  clear  the current input statement.
mysql>




二、安装Confluence 6.5.0(在my.cnf的[mysqld]下面加一行transaction_isolation = READ-COMMITTED设置事务隔离策略,confluence需要这种事务隔离策略,否则数据库连接的时候会报错)


1、下载并解压confluence到/tmp目录

1
2
3
4
wget -c -P  /tmp  https: //downloads .atlassian.com /software/confluence/downloads/atlassian-confluence-6 .5.0. tar .gz
cd  /tmp
tar  zxvf atlassian-confluence-6.5.0. tar .gz
cp  -rv atlassian-confluence-6.5.0/  /opt/


2、创建软链接,注意confluence目录后不要带“/”,/opt/confluence就作为confluence的安装目录

1
2
3
4
ln  -sv  /opt/atlassian-confluence-6 .5.0  /opt/confluence
- 创建confluence用户并设置密码为”123456“
/usr/sbin/useradd  --create-home --comment  "Account for running confluence"  --shell  /bin/bash  confluence
echo  "123456"  passwd  --stdin confluence


3、设置confluence目录只允许jira用户访问

1
2
chown  -R confluence.confluence  /opt/confluence/
chmod  -R 700  /opt/confluence/


4、创建confluence家目录,用于log、搜索索引等文件的存储,并限制只允许confluence用户访问

1
2
3
mkdir  /home/confluence/confluence-home
chown  -R confluence.confluence  /home/confluence/confluence-home
chmod  -R 700  /home/confluence/confluence-home


5、设置/opt/confluence/confluence/WEB-INF/classes/confluence-init.properties文件,在末尾去除注释并修改为上面设置的confluence家目录路径

1
confluence.home= /home/confluence/confluence-home


6、检查端口是否被占用,confluence默认运行的端口有8000和8090, Change the Server port (8000) and the Connector port (8090),如果被占用,可打开/opt/confluence/conf/server.xml文件修改端口,如果防火墙打开,则放行修改后的端口,下面的例子是修改成Server port to 5000 and the Connector port to 5050.

1
2
3
4
5
6
Server port= "5000"  shutdown = "SHUTDOWN"  debug= "0" >
<Service name= "Tomcat-Standalone" >
<Connector port= "5050"  connectionTimeout= "20000"  redirectPort= "8443"
maxThreads= "48"  minSpareThreads= "10"
enableLookups= "false"  acceptCount= "10"  debug= "0"  URIEncoding= "UTF-8"
protocol= "org.apache.coyote.http11.Http11NioProtocol"  />


7、下载mysql数据库连接confluence包并拷贝到jira的lib目录下

1
2
3
4
5
wget -c -P  /tmp  wget https: //dev .mysql.com /get/Downloads/Connector-J/mysql-connector-java-5 .1.45. tar .gz
cd  /tmp
tar  zxvf mysql-connector-java-5.1.45. tar .gz
cd  mysql-connector-java-5.1.45
\ cp  mysql-connector-java-5.1.45-bin.jar  /opt/confluence/confluence/WEB-INF/lib/


8、可以切换到confluence用户并启动jira工程,检查8090端口。并将启动命令加入到/etc/rc.local文件中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[confluence@localhost bin]$  /bin/sh  /opt/confluence/bin/start-confluence .sh 
 
To run Confluence  in  the foreground, start the server with start-confluence.sh - fg
executing as current user
If you encounter issues starting up Confluence, please see the Installation guide at http: //confluence .atlassian.com /display/DOC/Confluence +Installation+Guide
 
Server startup logs are located  in  /opt/confluence/logs/catalina .out
---------------------------------------------------------------------------
Using Java:  /usr/java/jdk1 .8.0_151 /bin/java
2017-12-25 12:24:25,301 INFO [main] [atlassian.confluence.bootstrap.SynchronyProxyWatchdog] A Context element  for  ${confluence.context.path} /synchrony-proxy  is found  in  /opt/confluence/conf/server .xml. No further action is required
---------------------------------------------------------------------------
Using CATALINA_BASE:    /opt/confluence
Using CATALINA_HOME:    /opt/confluence
Using CATALINA_TMPDIR:  /opt/confluence/temp
Using JRE_HOME:         /usr/java/jdk1 .8.0_151
Using CLASSPATH:        /opt/confluence/bin/bootstrap .jar: /opt/confluence/bin/tomcat-juli .jar
Using CATALINA_PID:     /opt/conflu
[confluence@localhost bin]$  lsof  -i:8090
COMMAND  PID USER   FD   TYPE DEVICE SIZE /OFF  NODE NAME
java    1504 root   36u  IPv6   8877      0t0  TCP *:8090 (LISTEN)


9、输入http://192.168.0.182:8090/访问

图片.png

图片.png

图片.png


注册一个帐号,需要FQ。

按照提示设置,会提示连接jira。注册官网帐号生成试用版序列号。

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png

图片.png



三、confluence连接jira设置


图片.png

图片.png


图片.png

图片.png

图片.png

图片.png

图片.png


图片.png


四、新建用户和组、设置邮箱、新建空间、设置空间权限,访问空间、新建页面,选择哪个页面然后新建,就是这个页面的子页面。





本文转自 sailikung 51CTO博客,原文链接:http://blog.51cto.com/net881004/2054131,如需转载请自行联系原作者

相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
MySQL数据库入门学习
本课程通过最流行的开源数据库MySQL带你了解数据库的世界。 &nbsp; 相关的阿里云产品:云数据库RDS MySQL 版 阿里云关系型数据库RDS(Relational Database Service)是一种稳定可靠、可弹性伸缩的在线数据库服务,提供容灾、备份、恢复、迁移等方面的全套解决方案,彻底解决数据库运维的烦恼。 了解产品详情:&nbsp;https://www.aliyun.com/product/rds/mysql&nbsp;
相关文章
|
3月前
|
存储 Ubuntu Linux
VMware-安装CentOS系统教程及安装包
虚拟机相当于是一个独立于你电脑的环境,在这个环境上面,你可以安装Linux、Windows、Ubuntu等各个类型各个版本的系统,在这个系统里面你不用担心有病读等,不用担心文件误删导致系统崩溃。 虚拟机也和正常的电脑系统是一样的,也可以开关机,不用的时候,你关机就可以了,也不会占用你的系统资源,使用起来还是比较方便 这里也有已经做好的CentOS 7系统,下载下来解压后直接用VMware打开就可以使用
769 69
|
2月前
|
存储 分布式计算 Linux
安装篇--CentOS 7 虚拟机安装
VMware 装 CentOS 7 不知道从哪下手?这篇超详细图文教程手把手教你在 VMware Workstation 中完成 CentOS 7 桌面系统的完整安装流程。从 ISO 镜像下载、虚拟机配置,到安装图形界面、设置用户密码,每一步都有截图讲解,适合零基础新手快速上手。装好之后无论你是要搭 Hadoop 集群,还是练 Linux ,这个环境都够你折腾一整天!
1081 2
|
3月前
|
Ubuntu Linux 索引
Centos 7、Debian及Ubuntu系统中安装和验证tree命令的指南。
通过上述步骤,我们可以在CentOS 7、Debian和Ubuntu系统中安装并验证 `tree`命令。在命令行界面中执行安装命令,然后通过版本检查确认安装成功。这保证了在多个平台上 `tree`命令的一致性和可用性,使得用户无论在哪种Linux发行版上都能使用此工具浏览目录结构。
387 78
|
2月前
|
安全 关系型数据库 MySQL
CentOS 7 yum 安装 MySQL教程
在CentOS 7上安装MySQL 8,其实流程很清晰。首先通过官方Yum仓库来安装服务,然后启动并设为开机自启。最重要的环节是首次安全设置:需要先从日志里找到临时密码来登录,再修改成你自己的密码,并为远程连接创建用户和授权。最后,也别忘了在服务器防火墙上放行3306端口,这样远程才能连上。
571 16
|
4月前
|
Linux 网络安全 Apache
针对在Centos/Linux安装Apache过程中出现的常见问题集锦
以上每个问题的解决方案应深入分析错误日志、系统消息和各种配置文件,以找到根本原因并加以解决。务必保持系统和Apache软件包更新到最新版本,以修复已知的bugs和安全漏洞。安装和管理Web服务器是一项需要细致关注和不断学习的任务。随着技术的发展,推荐定期查看官方文档和社区论坛,以保持知识的更新。
239 80
|
3月前
|
存储 关系型数据库 MySQL
在CentOS 8.x上安装Percona Xtrabackup工具备份MySQL数据步骤。
以上就是在CentOS8.x上通过Perconaxtabbackup工具对Mysql进行高效率、高可靠性、无锁定影响地实现在线快速全量及增加式数据库资料保存与恢复流程。通过以上流程可以有效地将Mysql相关资料按需求完成定期或不定期地保存与灾难恢复需求。
332 10
|
4月前
|
人工智能 数据挖掘 Linux
Centos安装Python3.7(亲测可用)
本指南详细介绍了在基于Linux(以CentOS系统为例,使用yum包管理器)的系统上安装Python 3.7版本的完整流程。Python是一种广泛使用的高级编程语言,在各种领域如软件开发、数据分析、人工智能和区块链开发等都有着重要的应用。
490 2
|
5月前
|
机器人 Linux
CentOS 7系统中安装特定版本CMake 3.21.2的方法。
到这里,过程已经全部完成。如果你跟随上面的步骤来,那么你现在已经拥有了一个全新的CMake版本在你的CentOS 7系统上了。这个过程就像是你通过一系列仪式,唤醒了一个沉睡已久的古老机器人,它现在完全按照你的意愿来帮你构建和编译软件了。
499 18
|
3月前
|
运维 网络协议 Linux
CentOS下Bind服务的安装与故障排查
通过以上的步骤,您应该能够在CentOS系统上安装并配置BIND DNS服务,并进行基本的故障排查。
373 0
|
3月前
|
存储 Ubuntu Linux
安卓手机免root安装各种Linux系统:Ubuntu, Centos,Kali等
此外还可以安装Slackware、Archstrike等系统,还可以通过github查找方法安装更多有趣的东西。 昨日小编就是通过Termux安装的Kali Linux工具包。