confluence的初步认识和了解

“Confluence是一个专业的企业知识管理与协同软件,也可以用于构建企业wiki。使用简单,但它强大的编辑和站点管理特征能够帮助团队成员之间共享信息、文档协作、集体讨论,信息推送。”这是百度百科给出的解释和介绍。想必大家对confluence都并不陌生,现在好多公司都是在用confluence来构建自己的企业wiki,用它来将信息共享,管理文档,技术分享,而且还支持在线编辑文档,ppt,execel等,功能强大,它说得上是我个人比较推荐的一款团队协作软件了!

confluence有很多版本,我们可以直接通过如下连接进行查看下载
https://www.atlassian.com/software/confluence/download-archives

confluence的初步认识和了解

再安装之前,我们要先安装数据库mysql,同时还要创建所需的库和用户,并授权

> create database confluence character set utf8 collate utf8_bin;

> create database jira character set utf8 collate utf8_bin; 

> create database crowd character set utf8 collate utf8_bin;

> grant all privileges on confluence.* to 'confluence'@'localhost' identified by 'xxxxxx';
> grant all privileges on confluence.* to 'confluence'@'%' identified by 'xxxxxx';
> grant all privileges on jira.* to 'jira'@'localhost' identified by 'xxxxxx';
> grant all privileges on jira.* to 'jira'@'%' identified by 'xxxxxx';
> grant all privileges on crowd.* to 'crowd'@'localhost' identified by 'xxxxxx';
> grant all privileges on crowd.* to 'crowd'@'%' identified by 'xxxxxx';

> flush privileges;

接下来就可以安装了!
chmod +x atlassian-confluence-x.x.x-x64.bin
$ ./atlassian-confluence-x.x.x-x64.bin

confluence的初步认识和了解

按图片步骤安装成功之后,开启服务

confluence的初步认识和了解
confluence的初步认识和了解

confluence被安装到了/opt/atlassian/confluence和/var/atlassian/application-data/confluence目录下,监听的端口是8090,访问地址为 localhost:8090。
这样我们的confluence就简单的搭建部署好了!