jira

sudo /etc/init.d/jira start 启动 jiar
sudo /etc/init.d/jira stop 停止 jiar

方法一:$ sudo /etc/init.d/confluence start

$ sudo /etc/init.d/confluence stop

$ sudo /etc/init.d/confluence restart

方法二:

cd /opt/atlassian/confluence/bin

关闭服务 ./shutdown.sh

开启服务 ./startup.sh

修改confluence的配置文件

[root@localhost usr]# cd /opt/atlassian/confluence

[root@localhost confluence]# ls -a
.  ..  bin  conf  confluence  .install4j  install.reg  jre  lib  LICENSE  licenses  logs  NOTICE  README.html  README.txt  RELEASE-NOTES  RUNNING.txt  synchrony-proxy  temp  uninstall  webapps  work

[root@localhost confluence]# cd conf
[root@localhost conf]# cat -n server.xml
     1    <Server port="8000" shutdown="SHUTDOWN" debug="0">
     2        <Service name="Tomcat-Standalone">
     3            <Connector port="8090" connectionTimeout="20000" redirectPort="8443"
     4                    maxThreads="48" minSpareThreads="10"
     5                    enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
     6                    protocol="org.apache.coyote.http11.Http11NioProtocol" />
     7    
     8            <Engine name="Standalone" defaultHost="localhost" debug="0">
     9    
    10                <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="false" startStopThreads="4">
    11                    <Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true">
    12                        <!-- Logger is deprecated in Tomcat 5.5. Logging configuration for Confluence is specified in confluence/WEB-INF/classes/log4j.properties -->
    13                        <Manager pathname="" />
    14                        <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60" />
    15                    </Context>
    16    
    17                    <Context path="${confluence.context.path}/synchrony-proxy" docBase="../synchrony-proxy" debug="0" reloadable="false" useHttpOnly="true">
    18                        <Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60" />
    19                    </Context>
    20                </Host>
    21    
    22            </Engine>
    23    
    24            <!--
    25                To run Confluence via HTTPS:
    26                 * Uncomment the Connector below
    27                 * Execute:
    28                     %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    29                     $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA  (Unix)
    30                   with a password value of "changeit" for both the certificate and the keystore itself.
    31                 * Restart and visit https://localhost:8443/
    32    
    33                 For more info, see https://confluence.atlassian.com/display/DOC/Running+Confluence+Over+SSL+or+HTTPS
    34            -->
    35    <!--
    36            <Connector port="8443" maxHttpHeaderSize="8192"
    37                       maxThreads="150" minSpareThreads="25"
    38                       protocol="org.apache.coyote.http11.Http11NioProtocol"
    39                       enableLookups="false" disableUploadTimeout="true"
    40                       acceptCount="100" scheme="https" secure="true"
    41                       clientAuth="false" sslProtocols="TLSv1,TLSv1.1,TLSv1.2" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2" SSLEnabled="true"
    42                       URIEncoding="UTF-8" keystorePass="<MY_CERTIFICATE_PASSWORD>"/>
    43    -->
    44        </Service>
    45    </Server>
    46

2 安装企业wiki:confluence的更多相关文章

  1. 1 安装企业wiki:confluence

    使用wget下载命令下载文件. 下载成功使用dir可以看到文件目录 [root@localhost usr]# diratlassian-confluence-6.3.1-x64.bin  bin  ...

  2. Docker中安装wiki Confluence

    一下内容在centos 7安装成功. 一.安装docker 1.yum安装docker yum update # 更新yum yum install docker # yum安装docker 2.开启 ...

  3. 记录创建企业Wiki的几个开源项目

    很多著名的企业Wiki都是开源产品,如Foswiki(基于Perl),TWiki(基于Perl)等,另外有Mindtouch(基于PHP, C#),Confluence(基于Java)等.维基道的Wi ...

  4. IOS以无线方式安装企业内部应用(开发者)

    请先阅读:http://help.apple.com/deployment/ios/#/apda0e3426d7 操作系统:osx yosemite 10.10.5 (14F1509) xcode:V ...

  5. 企业wiki之confluence安装部署(linux)及其破解

    系统环境(虚拟机) centos6.5   2G运行内存,30g硬盘,cpu最好也分配两个或多个,因为我在安装过程中发现很卡,cpu占用率几乎占满 需要用到的安装包和文件可以在这里找 链接:https ...

  6. centos7 安装最新的 wiki confluence

    41.1 下载confluence Confluence是一个企业级的Wiki,可用于企业.部门.团队内部进行信息共享和协同编辑. 下载地址: https://www.atlassian.com/so ...

  7. 利用Confluence搭建企业Wiki

    Confluence安装与部署 下载安装包及破解包 安装包下载地址:https://www.atlassian.com/software/confluence/download-archives 破解 ...

  8. wiki confluence安装

    注意:安装前请先确认内存 至少2G 1.上传 atlassian-confluence-5.9.3-x64.bin 文件,修改权限 chmod 777 atlassian-confluence-5.9 ...

  9. Linux系统中使用confluence构建企业wiki

    搭建confluence服务需要的步骤有:一,安装java环境即安装jdk8.二,安装需要使用的数据库(建议使用mysql5.6).三,破解的confluence6服务. 一,所需软件下载 1,下载j ...

随机推荐

  1. POJ 2567 Code the Tree &amp; POJ 2568 Decode the Tree Prufer序列

    题目大意:2567是给出一棵树,让你求出它的Prufer序列.2568时给出一个Prufer序列,求出这个树. 思路:首先要知道Prufer序列.对于随意一个无根树,每次去掉一个编号最小的叶子节点,并 ...

  2. sys.argv 详细用法

    sys.argv 用于获取命令行参数,用法如下: [root@localhost ~]$ cat 1.py #!/usr/bin/env python #-*- coding:utf-8 -*- im ...

  3. $("#btn").click(function(){ });只有在页面加载的时候才会有效触发

    例: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title& ...

  4. Linux 下8种优秀的屏幕录制机

    导读 屏幕录制机已经成为常见的和良好的实践来记录一个重要桌面会话,例如,你想玩一个难度较大的游戏,并且向记录是如何完成的,或者你打算创建一个视频教程,入门文章或指南,或任何其他活动和记录你的桌面会话, ...

  5. [Gradle] 给已存在的 task 添加依赖

    需求:在编译宿主 APP 之前先编译两个插件 SamplePlugin1 和 SamplePlugin2 tasks.whenTaskAdded { task -> if (task.name ...

  6. 160303、js加密跟后台加密对应

    md5.js var hexcase = 0; var b64pad = ""; var chrsz = 8; function hex_md5(s){ return binl2h ...

  7. 160524、Linux下如何启动、关闭Oracle以及打开关闭监听

    1. linux下启动oraclesu - oraclesqlplus /nologconn /as sysdbastartupexitlsnrctl startexit2. linux下关闭orac ...

  8. Spring的AOP-----HelloWord

    这里就一个计算器开发为例1搭建环境-搭配好Spring的AOP开发环境导入以下这些包:2建立好核心处理模块的类ArithmeticCalculator: package com.jeremy.spri ...

  9. java 常用资源

    java高手真经:http://pan.baidu.com/share/link?uk=2100475681&shareid=2381645927#path=%252F%255Bwww.jav ...

  10. [LeetCode] 9.Palindrome Number - Swift

    Determine whether an integer is a palindrome. Do this without extra space. 题目意思:判断一个整数是否是回文数 例如:1232 ...