Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Atlassian Suite is a shared collection of tools that facilitate tasks in software development and operational environments at UConn including Kuali. Some of these tasks include bug tracking, process documentation, and read-only access to version control.

 

JIRA

 

Expand

JIRA is UConn's SDLC bug tracking environment. It provides issue tracking and workflow for development teams and SME's. It also provides tickets for Kuali enhancement and mod development.

 

JIRA URLs

PRODUCTION: https://jira.uits.uconn.edu

TEST: https://jiratest.uits.uconn.edu

 

Server Addresses

jira@atl-jira.uits.uconn.edu  (PROD)

jira@atl-jira2.uits.uconn.edu  (TEST)


Log Output Locations

/opt/jira_home/log/atlassian-jira.log

/usr/share/tomcat6/logs/catalina.out



 

Confluence

 

Expand

Confluence is an Atlassian documentation tool oriented for enterprise teams. It is a technical and procedural documentation repository and integrates with UConn's Atlassian JIRA instance.

 

Confluence URLs

PRODUCTION: https://confluence.uconn.edu

TEST: https://confluencetest.uits.uconn.edu

 

Server Addresses

tomcat@atl-confluence.uits.uconn.edu  (PROD)

tomcat@atl-confluence2.uits.uconn.edu  (TEST)


Log Output Locations

/srv/confluence_home/logs/atlassian-confluence.log

/usr/share/tomcat6/logs/catalina.out



Confluence Home and Application Directories

/srv/confluence_home

Contains "confluence.cfg.xml" with general instance configuration properties

/opt/atlassian/confluence-5.5.2

(Contains runtime files including .bin)

 

Tomcat Configuration

The Confluence instance has it's deployment descriptor and additional configuration handled by the Tomcat instance.

The files /etc/tomcat6/server.xml and /etc/tomcat6/Catalina/localhost/confluence.xml both contain the context path for the app.

This context path is set to the application root for the URL and is represented as "" because Tomcat has issues parsing the value "/" via the config.

Code Block
<Context path="" docBase="/opt/atlassian/confluence_distros/confluence-5.5.2/confluence" debug="0" reloadable="true"></Context>


Confluence Startup/Shutdown Commands for UConn Environment

 

 

Code Block
titleStartup / Shutdown
sudo /sbin/service tomcat start

sudo /sbin/service tomcat stop

...

Expand

Purpose

This page is for information relating to the configuration and use of Atlassian Fisheye

Fisheye provides read-only access and activity information to UConn's version control repositories.


Fisheye 3.4.4 ConfigurationFisheye URLs

PRODUCTION: https://fisheye.uits.uconn.edu

TEST: https://fisheyetest.uits.uconn.edu


Server Addresses

tomcat@atl-fisheye.uits.uconn.edu  (PROD)

tomcat@atl-fisheye2.uits.uconn.edu  (TEST)


Log Output Locations

/opt/atlassian/fecru-3.4.4/var/log/fisheye.out

 

Fisheye Home and Installation Directory

/opt/atlassian/fecru-3.4.4


Fisheye Startup/Shutdown Commands for UCONN Environment

 

su - tomcat
bash /opt/atlassian/fecru-3.4.4/bin/start.sh
bash /opt/atlassian/fecru-3.4.4/bin/stop.sh

 

Information Relating to Atlassian Fisheye Upgrade and Maintenance

Atlassian Fisheye Upgrade Guide

Atlassian Fisheye Oracle Migration Guide

...