Jira config.sh creates invalid database settings file

Nathan Peters September 3, 2015

I did a standalone installation of JIRA 6.2.1 using the Linux 64 bit bin installer.

After running config.sh to configure my database and attempting to start the server, I find the server not listening on either of the ports I configured (port 80 redirect port 443.  Port 443 setup as SSL).

 

the catalina.out log gives the following error

 

2015-09-03 22:15:50,407 localhost-startStop-1 ERROR      [jira.appconsistency.db.PostgresSchemaConfigCheck] The schema name 'null' in your dbconfig.xml file contains upper case characters and JIRA only supports lower case schemas in POSTGRES.

This is the file that the config.sh generated:

 

<?xml version="1.0" encoding="UTF-8"?>

<jira-database-config>
  <name>defaultDS</name>
  <delegator-name>default</delegator-name>
  <database-type>postgres72</database-type>
  <jdbc-datasource>
    <url>jdbc:postgresql://10.10.10.10:5432/jira_41</url>
    <driver-class>org.postgresql.Driver</driver-class>
    <username>jirauser</username>
    <password>jiranimo</password>
    <pool-min-size>20</pool-min-size>
    <pool-max-size>20</pool-max-size>
    <pool-max-wait>30000</pool-max-wait>
    <pool-max-idle>20</pool-max-idle>
    <pool-remove-abandoned>true</pool-remove-abandoned>
    <pool-remove-abandoned-timeout>300</pool-remove-abandoned-timeout>
  </jdbc-datasource>
</jira-database-config>

 

I noticed that there is not even a line in there for schema.  So why would the config.sh generate an invalid database file?

2 answers

0 votes
Tim Evans
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 4, 2015

Hi Nathan,

This error appears because the dbconfig.xml file does not have any schema present. The default schema is "public" and this schema name should be used in with PostgreSQL if you did not create a different schema to use.

The Connecting JIRA to PostgreSQL guide has more details on configuring the connection. The PostgreSQL Schema documentation has more details about the "public" schema.

When the schema name is not present JIRA will use the default why is your instance started and was able to access the database. We do recommend that the database connection be set up according to the directions in the guide linked above, which includes a having schema name in the configuration.

You mentioned not being able to access JIRA. This would be unrelated to the dbconfig and is likely related to your SSL configuration.

Cheers!
Tim | Atlassian

0 votes
Nathan Peters September 3, 2015

Here is the complete log for startup. It doesn't seem to indicate any error binding to port 80 or 443 : Sep 03, 2015 10:39:25 PM org.apache.catalina.startup.Catalina load INFO: Initialization processed in 1811 ms Sep 03, 2015 10:39:25 PM org.apache.catalina.core.StandardService startInternal INFO: Starting service Catalina Sep 03, 2015 10:39:25 PM org.apache.catalina.core.StandardEngine startInternal INFO: Starting Servlet Engine: Apache Tomcat/7.0.47 2015-09-03 22:39:41,962 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] **************** JIRA starting... **************** 2015-09-03 22:39:42,499 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] ___ Environment _____________________________ JIRA Build : 6.2.1#6256-sha1:f72b2831aad07cd856610541aa2dab76488bde7f Build Date : Tue Mar 11 00:00:00 UTC 2014 JIRA Installation Type : Standalone Application Server : Apache Tomcat/7.0.47 - Servlet API 3.0 Java Version : 1.7.0_25 - Oracle Corporation Current Working Directory : /opt/atlassian/jira/bin Maximum Allowable Memory : 742MB Total Memory : 371MB Free Memory : 82MB Used Memory : 289MB Memory Pool: Code Cache : Code Cache: init = 2555904(2496K) used = 2128320(2078K) committed = 2555904(2496K) max = 50331648(49152K) Memory Pool: Eden Space : Eden Space: init = 107479040(104960K) used = 73331440(71612K) committed = 107479040(104960K) max = 214827008(209792K) Memory Pool: Survivor Space : Survivor Space: init = 13369344(13056K) used = 13369336(13055K) committed = 13369344(13056K) max = 26804224(26176K) Memory Pool: Tenured Gen : Tenured Gen: init = 268435456(262144K) used = 215782576(210725K) committed = 268435456(262144K) max = 536870912(524288K) Memory Pool: Perm Gen : Perm Gen: init = 21757952(21248K) used = 19623136(19163K) committed = 21757952(21248K) max = 402653184(393216K) JVM Input Arguments : -Djava.util.logging.config.file=/opt/atlassian/jira/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -XX:MaxPermSize=384m -Xms384m -Xmx768m -Djava.awt.headless=true -Datlassian.standalone=JIRA -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true -Dmail.mime.decodeparameters=true -Dorg.dom4j.factory=com.atlassian.core.xml.InterningDocumentFactory -XX:+PrintGCDateStamps -XX:-OmitStackTraceInFastThrow -Djava.endorsed.dirs=/opt/atlassian/jira/endorsed -Dcatalina.base=/opt/atlassian/jira -Dcatalina.home=/opt/atlassian/jira -Djava.io.tmpdir=/opt/atlassian/jira/temp Java Compatibility Information : JIRA version = 6.2.1, Java Version = 1.7.0_25 ___ Java System Properties _________________ atlassian.standalone : JIRA awt.toolkit : sun.awt.X11.XToolkit catalina.base : /opt/atlassian/jira catalina.home : /opt/atlassian/jira catalina.useNaming : true common.loader : ${catalina.base}/lib, ${catalina.base}/lib/*.jar, ${catalina.home}/lib, ${catalina.home}/lib/*.jar file.encoding : ANSI_X3.4-1968 file.encoding.pkg : sun.io java.awt.graphicsenv : sun.awt.X11GraphicsEnvironment java.awt.headless : true java.awt.printerjob : sun.print.PSPrinterJob java.class.version : 51.0 java.home : /opt/atlassian/jira/jre java.io.tmpdir : /opt/atlassian/jira/temp java.naming.factory.initial : org.apache.naming.java.javaURLContextFactory java.naming.factory.url.pkgs : org.apache.naming java.runtime.name : Java(TM) SE Runtime Environment java.runtime.version : 1.7.0_25-b15 java.specification.name : Java Platform API Specification java.specification.vendor : Oracle Corporation java.specification.version : 1.7 java.util.logging.config.file : /opt/atlassian/jira/conf/logging.properties java.util.logging.manager : org.apache.juli.ClassLoaderLogManager java.vendor : Oracle Corporation java.vendor.url : http://java.oracle.com/ java.vendor.url.bug : http://bugreport.sun.com/bugreport/ java.version : 1.7.0_25 java.vm.info : mixed mode java.vm.name : Java HotSpot(TM) 64-Bit Server VM java.vm.specification.name : Java Virtual Machine Specification java.vm.specification.vendor : Oracle Corporation java.vm.specification.version : 1.7 java.vm.vendor : Oracle Corporation java.vm.version : 23.25-b01 mail.mime.decodeparameters : true org.apache.catalina.startup.ContextConfig.jarsToSkip : org.apache.catalina.startup.TldConfig.jarsToSkip : tomcat7-websocket.jar org.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER : true org.dom4j.factory : com.atlassian.core.xml.InterningDocumentFactory os.arch : amd64 os.name : Linux os.version : 2.6.32-431.29.2.el6.x86_64 package.access : sun., org.apache.catalina., org.apache.coyote., org.apache.tomcat., org.apache.jasper. package.definition : sun., java., org.apache.catalina., org.apache.coyote., org.apache.tomcat., org.apache.jasper. server.loader : shared.loader : sun.arch.data.model : 64 sun.boot.library.path : /opt/atlassian/jira/jre/lib/amd64 sun.cpu.endian : little sun.cpu.isalist : sun.io.unicode.encoding : UnicodeLittle sun.java.command : org.apache.catalina.startup.Bootstrap start sun.java.launcher : SUN_STANDARD sun.jnu.encoding : ANSI_X3.4-1968 sun.management.compiler : HotSpot 64-Bit Tiered Compilers sun.os.patch.level : unknown tomcat.util.buf.StringCache.byte.enabled : true tomcat.util.scan.DefaultJarScanner.jarsToSkip : bootstrap.jar, commons-daemon.jar, tomcat-juli.jar, annotations-api.jar, el-api.jar, jsp-api.jar, servlet-api.jar, websocket-api.jar, catalina.jar, catalina-ant.jar, catalina-ha.jar, catalina-tribes.jar, jasper.jar, jasper-el.jar, ecj-*.jar, tomcat-api.jar, tomcat-util.jar, tomcat-coyote.jar, tomcat-dbcp.jar, tomcat-jni.jar, tomcat-spdy.jar, tomcat-i18n-en.jar, tomcat-i18n-es.jar, tomcat-i18n-fr.jar, tomcat-i18n-ja.jar, tomcat-juli-adapters.jar, catalina-jmx-remote.jar, catalina-ws.jar, tomcat-jdbc.jar, tools.jar, commons-beanutils*.jar, commons-codec*.jar, commons-collections*.jar, commons-dbcp*.jar, commons-digester*.jar, commons-fileupload*.jar, commons-httpclient*.jar, commons-io*.jar, commons-lang*.jar, commons-logging*.jar, commons-math*.jar, commons-pool*.jar, jstl.jar, geronimo-spec-jaxrpc*.jar, wsdl4j*.jar, ant.jar, ant-junit*.jar, aspectj*.jar, jmx.jar, h2*.jar, hibernate*.jar, httpclient*.jar, jmx-tools.jar, jta*.jar, log4j.jar, log4j-1*.jar, mail*.jar, slf4j*.jar, xercesImpl.jar, xmlParserAPIs.jar, xml-apis.jar, junit.jar, junit-*.jar, hamcrest*.jar, org.hamcrest*.jar, ant-launcher.jar user.country : US user.dir : /opt/atlassian/jira/bin user.home : /home/jira user.language : en user.name : jira user.timezone : UTC 2015-09-03 22:39:43,321 localhost-startStop-1 INFO [atlassian.jira.startup.JiraHomeStartupCheck] The jira.home directory '/var/atlassian/application-data/jira' is validated and locked for exclusive use by this instance. 2015-09-03 22:39:43,346 localhost-startStop-1 INFO [jira.config.database.SystemDatabaseConfigurationLoader] Reading database configuration from /var/atlassian/application-data/jira/dbconfig.xml 2015-09-03 22:39:43,686 localhost-startStop-1 WARN [atlassian.jira.startup.ChecklistLauncher] Setting an unset default variable "plugin.webresource.batching.off" to: false 2015-09-03 22:39:43,689 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] Running JIRA startup checks. 2015-09-03 22:39:43,689 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] JIRA pre-database startup checks completed successfully. 2015-09-03 22:39:43,829 localhost-startStop-1 INFO [jira.config.database.DatabaseConfigurationManagerImpl] Now running Database Checklist Launcher 2015-09-03 22:39:43,845 localhost-startStop-1 ERROR [jira.appconsistency.db.PostgresSchemaConfigCheck] The schema name 'null' in your dbconfig.xml file contains upper case characters and JIRA only supports lower case schemas in POSTGRES. 2015-09-03 22:39:43,847 localhost-startStop-1 ERROR [jira.appconsistency.db.PostgresSchemaConfigCheck] JIRA will work as long as the real schema name in the Postgres database is really lower case. 2015-09-03 22:39:43,847 localhost-startStop-1 ERROR [jira.appconsistency.db.PostgresSchemaConfigCheck] Please refer to the JIRA database documentation at the following URL: http://www.atlassian.com/software/jira/docs/latest/databases/postgres.html 2015-09-03 22:39:46,509 localhost-startStop-1 INFO [core.entity.jdbc.DatabaseUtil] Database Product Name is PostgreSQL 2015-09-03 22:39:46,513 localhost-startStop-1 INFO [core.entity.jdbc.DatabaseUtil] Database Product Version is 8.3.3 2015-09-03 22:39:46,513 localhost-startStop-1 INFO [core.entity.jdbc.DatabaseUtil] Database Driver Name is PostgreSQL Native Driver 2015-09-03 22:39:46,514 localhost-startStop-1 INFO [core.entity.jdbc.DatabaseUtil] Database Driver Version is PostgreSQL 9.0 JDBC4 (build 801) 2015-09-03 22:39:51,455 localhost-startStop-1 INFO [atlassian.jira.startup.DatabaseChecklistLauncher] JIRA database startup checks completed successfully. 2015-09-03 22:39:51,456 localhost-startStop-1 INFO [jira.config.database.DatabaseConfigurationManagerImpl] Now running Post database-configuration launchers 2015-09-03 22:39:53,195 localhost-startStop-1 INFO [jira.config.database.SystemDatabaseConfigurationLoader] Reading database configuration from /var/atlassian/application-data/jira/dbconfig.xml 2015-09-03 22:39:57,199 localhost-startStop-1 INFO [atlassian.jira.startup.DatabaseLauncher] Database transactions enabled: true 2015-09-03 22:39:57,201 localhost-startStop-1 INFO [atlassian.jira.startup.DatabaseLauncher] Using JIRA's default for database transaction isolation level: 2 2015-09-03 22:39:57,224 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] Database configuration OK ___ Database Configuration _________________ Loading entityengine.xml from : file:/opt/atlassian/jira/atlassian-jira/WEB-INF/classes/entityengine.xml Entity model field type name : postgres72 Entity model schema name : Database Version : PostgreSQL - 8.3.3 Database Driver : PostgreSQL Native Driver - PostgreSQL 9.0 JDBC4 (build 801) Database URL : jdbc:postgresql://10.21.10.13:5432/jira_41 Database JDBC config : postgres72 jdbc:postgresql://10.21.10.13:5432/jira_41 2015-09-03 22:39:57,226 localhost-startStop-1 INFO [atlassian.jira.startup.ClusteringChecklistLauncher] JIRA clustering startup checks completed successfully. 2015-09-03 22:39:57,263 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] ___ Starting the JIRA Plugin System _________________ 2015-09-03 22:39:57,268 localhost-startStop-1 INFO [atlassian.plugin.manager.DefaultPluginManager] Initialising the plugin system 2015-09-03 22:40:13,787 localhost-startStop-1 INFO [atlassian.plugin.loaders.ScanningPluginLoader] No plugins found to be deployed ___ Starting the JIRA Plugin System _________________ 2015-09-03 22:39:57,268 localhost-startStop-1 INFO [atlassian.plugin.manager.DefaultPluginManager] Initialising the plugin system 2015-09-03 22:40:13,787 localhost-startStop-1 INFO [atlassian.plugin.loaders.ScanningPluginLoader] No plugins found to be deployed 2015-09-03 22:40:32,690 ThreadPoolAsyncTaskExecutor::Thread 13 WARN [org.springframework.beans.TypeConverterDelegate] PropertyEditor [com.sun.beans.editors.EnumEditor] found through deprecated global PropertyEditorMaager fallback - consider using a more isolated form of registration, e.g. on the BeanWrapper/BeanFactory! 2015-09-03 22:40:45,676 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, tac.jira.languages.ja_JP, tac.jira.languages.fr_R, com.atlassian.plugins.rest.atlassian-rest-module, tac.jira.languages.es_ES, com.atlassian.jira.jira-issue-link-confluence-plugin, com.atlassian.plugins.atlassian-whitelist-ui-plugin, com.atlassian.jira.jira-issue-nav-cmponents, com.atlassian.jira.jira-header-plugin, com.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bamboo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadget.oauth.serviceprovider, com.atlassian.hipchat.plugins.core, com.atlassian.administration.atlassian-admin-quicksearch-jira, com.atlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.colletor.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.jira.jira-issue-ink-remote-jira-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.jira.jira-issue-link-applinks-common-plugin, com.atlassian.oauth.admin, com.atlassian.mywrk.mywork-jira-provider-plugin, com.atlassian.plugins.atlassian-whitelist-api-plugin, com.atlassian.streams.streams-thirdparty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin,com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, comatlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.jira.jira-view-issue-plugin, com.atlassian.mywork.mywrk-common-plugin, com.atlassian.crowd.embedded.admin, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jiraimporters-redmine-plugin, com.atlassian.oauth.serviceprovider, com.atlassian.labs.hipchat.hipchat-for-jira-plugin, com.atlassian.plugins.atlassian-awareness-capability, com.atlassian.jira.jira-project-config-plugin, com.alassian.jira.welcome.jira-welcome-plugin], 60 seconds remaining 2015-09-03 22:40:46,799 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.plugins.rest.atlassian-rest-module com.atlassian.jira.jira-issue-link-confluence-plugin, com.atlassian.plugins.atlassian-whitelist-ui-plugin, com.atlassian.jira.jira-issue-nav-components, com.atlassian.jira.jira-header-plugin, com.atlassian.jira.jira-quic-edit-plugin, com.atlassian.jira.plugin.ext.bamboo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.hipchat.plugins.core, com.atlassian.admnistration.atlassian-admin-quicksearch-jira, com.atlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbuket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.jira.jira-issue-link-remote-jira-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atassian-universal-plugin-manager-plugin, com.atlassian.jira.jira-issue-link-applinks-common-plugin, com.atlassian.oauth.admin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.plugins.atlassian-whitelist-apiplugin, com.atlassian.streams.streams-thirdparty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.est, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.alassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.jira.jira-view-issue-plugin, com.atlassian.mywork.mywork-common-plugin, com.atlassian.crowd.embedded.admin, com.atlassian.gadgets.dshboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.oauth.serviceprovider, com.atlassian.abs.hipchat.hipchat-for-jira-plugin, com.atlassian.plugins.atlassian-awareness-capability, com.atlassian.jira.jira-project-config-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 58 seconds remaining 2015-09-03 22:40:47,800 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-link-confluence-plgin, com.atlassian.plugins.atlassian-whitelist-ui-plugin, com.atlassian.jira.jira-issue-nav-components, com.atlassian.jira.jira-header-plugin, com.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bambo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.hipchat.plugins.core, com.atlassian.administration.atlassian-admin-quicksearch-jira, com.tlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplgin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.jira.jira-issue-link-remote-jira-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlasian.jira.jira-issue-link-applinks-common-plugin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.plugins.atlassian-whitelist-api-plugin, com.atlassian.streams.streams-thirdparty-plugin, com.atlassian.streas, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-project-cretion-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, om.atlassian.jira.jira-view-issue-plugin, com.atlassian.mywork.mywork-common-plugin, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, om.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.oauth.serviceprovider, com.atlassian.labs.hipchat.hipchat-for-jira-plugin, com.atlassian.plugins.atlassian-awareness-capability, com.atlassian.jira.jia-project-config-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 57 seconds remaining 2015-09-03 22:40:49,094 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-link-confluence-plgin, com.atlassian.plugins.atlassian-whitelist-ui-plugin, com.atlassian.jira.jira-issue-nav-components, com.atlassian.jira.jira-header-plugin, com.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bambo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.collector.lugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.jira.jira-issue-link-emote-jira-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.plugins.atlassian-whitelist-api-plugin, com.tlassian.streams.streams-thirdparty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.rest, com.atlssian.jira.gadgets, com.atlassian.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jiraplugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.jira.jira-view-issue-plugin, com.atlassian.mywork.mywork-common-plugin, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugn, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.jira-project-config-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 56 sconds remaining 2015-09-03 22:40:50,094 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bamboo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.plugins.orkflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jir.plugins.webhooks.jira-webhooks-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.streams.streams-thirdpaty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassia.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, cm.atlassian.gadgets.embedded, com.atlassian.mywork.mywork-common-plugin, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassia.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 55 seconds remaining 2015-09-03 22:40:51,938 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bamboo, com.atlassian.applinks.applinks-plugin, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.plugins.orkflow.sharing.jira-workflow-sharing-plugin, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jir.plugins.webhooks.jira-webhooks-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.streams.streams-thirdpaty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.plugins.jira-remote-link-aggregator-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassia.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, cm.atlassian.gadgets.embedded, com.atlassian.mywork.mywork-common-plugin, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassia.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 53 seconds remaining 2015-09-03 22:40:52,938 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.jira.jira-quick-edit-plugin, com.atlassian.jira.plugin.ext.bamboo, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-pugin, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin,com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.mywork.mywork-jira-provider-plugin, com.atlassian.streams.streams-thirdparty-plugin, com.atlassian.streams, com.alassian.jira.plugins.jira-development-integration-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-project-creation-plugin, com.atlassian.plugins.atlassian-nav-links-plugin, comatlassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.mywork.mywork-common-plugin, com.atlassian.gadgets.dahboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 52 econds remaining 2015-09-03 22:40:53,776 ThreadPoolAsyncTaskExecutor::Thread 4 INFO [devstatus.provider.source.ThreadPool] Creating new thread pool with configuration: ThreadPool.Builder.EffectiveConfig[name=applink,coreThreads=4,pooSize=20,keepAliveTime=60,queue=ThreadPool.Builder.LinkedBlocking[queueSize=4096]] 2015-09-03 22:40:53,939 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.jira.plugin.ext.bamboo, com.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-conector-plugin, com.atlassian.jirafisheyeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.streams.treams-thirdparty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-nav-links-plugin, com.alassian.jira.jira-issue-nav-plugin, com.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-pugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 51 seconds remaining 2015-09-03 22:40:54,941 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.streams.actions, com.atlassian.gadgets.oauth.serviceprovider, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jirafisheeplugin, com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin, com.atlassian.gadgets.directory, com.atlassian.upm.atlassian-universal-plugin-manager-plugin, com.atlassian.streams.streams-thirdparty-plugin, com.atlassin.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.jira.rest, com.atlassian.jira.gadgets, com.atlassian.plugins.atlassian-nav-links-plugin, com.atlassian.jira.jira-issue-nav-plugin, cm.atlassian.gadgets.opensocial, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.gadgets.embedded, com.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jiraimporters-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 50 seconds remaining 2015-09-03 22:40:55,941 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.jira.jira-issue-nav-components, co.atlassian.streams.actions, com.atlassian.jira.collector.plugin.jira-issue-collector-plugin, com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.gadgets.directory, com.atlassian.streams.streams-thirdarty-plugin, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.jira.gadgets, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.jira.plugins.jira-importers-plugin, cm.atlassian.gadgets.dashboard, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jia-welcome-plugin], 49 seconds remaining 2015-09-03 22:40:57,413 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.project-templates-plugin, com.atlassian.streams.actions, com.atlassian.jir.plugins.jira-bitbucket-connector-plugin, com.atlassian.gadgets.directory, com.atlassian.streams, com.atlassian.jira.plugins.jira-development-integration-plugin, com.atlassian.jira.gadgets, com.atlassian.jira.jira-issue-nv-plugin, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin, om.atlassian.jira.welcome.jira-welcome-plugin], 48 seconds remaining 2015-09-03 22:40:58,413 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.gadgets.directory, om.atlassian.streams, com.atlassian.jira.jira-issue-nav-plugin, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.streams.streams-jira-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.tlassian.jira.plugins.jira-importers-redmine-plugin, com.atlassian.jira.welcome.jira-welcome-plugin], 47 seconds remaining 2015-09-03 22:40:59,413 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.plugins.jira-bitbucket-connector-plugin, com.atlassian.jira.jira-issue-navplugin, com.atlassian.jira.plugins.jira-importers-plugin, com.atlassian.jira.plugins.jira-importers-bitbucket-plugin, com.atlassian.jira.plugins.jira-importers-redmine-plugin], 46 seconds remaining 2015-09-03 22:41:00,707 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.plugins.jira-bitbucket-connector-plugin], 44 seconds remaining 2015-09-03 22:41:01,707 localhost-startStop-1 INFO [atlassian.plugin.util.WaitUntil] Plugins that have yet to be enabled: [com.atlassian.jira.plugins.jira-bitbucket-connector-plugin], 43 seconds remaining 2015-09-03 22:41:02,513 ThreadPoolAsyncTaskExecutor::Thread 9 INFO [plugins.dvcs.listener.UserAddListenerFactoryBean] Attempt to create and register DvcsAddUserListener listener 2015-09-03 22:41:02,518 ThreadPoolAsyncTaskExecutor::Thread 9 INFO [plugins.dvcs.listener.DvcsAddUserListener] Attempting to register listener ... 2015-09-03 22:41:05,445 localhost-startStop-1 INFO [jira.plugins.monitor.MonitoringScheduler] Scheduling metrics collector to run every 10000ms... 2015-09-03 22:41:05,456 localhost-startStop-1 INFO [plugins.monitor.rrd4j.RrdUpdater] Reusing existing RrdDb: /var/atlassian/application-data/jira/monitor/ConnectionPoolGraph.rrd4j 2015-09-03 22:41:05,497 localhost-startStop-1 INFO [plugins.monitor.rrd4j.RrdUpdater] Reusing existing RrdDb: /var/atlassian/application-data/jira/monitor/DatabaseReadWritesGraph.rrd4j 2015-09-03 22:41:05,502 localhost-startStop-1 INFO [jira.plugins.monitor.MonitorLauncher] Started JIRA monitoring 2015-09-03 22:41:12,142 localhost-startStop-1 INFO [atlassian.plugin.manager.DefaultPluginManager] Plugin system started in 0:01:14.872 2015-09-03 22:41:12,364 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] ___ Plugin System Started _________________ 2015-09-03 22:41:12,829 localhost-startStop-1 INFO [jira.config.database.SystemDatabaseConfigurationLoader] Reading database configuration from /var/atlassian/application-data/jira/dbconfig.xml 2015-09-03 22:41:12,834 localhost-startStop-1 INFO [jira.instrumentation.external.DatabaseExternalGauges] Installing DBCP monitoring instruments: DatabaseExternalGauges.JiraDbcpInstruments[instruments=[DBCP_MAX, DBCPACTIVE, DBCP_IDLE],objectName=com.atlassian.jira:name=BasicDataSource] 2015-09-03 22:41:13,467 localhost-startStop-1 INFO [atlassian.jira.upgrade.ConsistencyCheckImpl] Checking JIRA consistency 2015-09-03 22:41:13,571 localhost-startStop-1 INFO [service.services.file.AbstractMessageHandlingService$HandlerDisablementListener] Registering disablement listener for module 'com.atlassian.jira.jira-mail-plugin:crateOrCommentHandler' 2015-09-03 22:41:13,592 localhost-startStop-1 INFO [service.services.file.AbstractMessageHandlingService$HandlerDisablementListener] Registering disablement listener for module 'com.atlassian.jira.jira-mail-plugin:crateOrCommentHandler' 2015-09-03 22:41:13,620 localhost-startStop-1 INFO [atlassian.jira.upgrade.ConsistencyCheckImpl] The Server ID for this JIRA instance is: [AG8D-3RC5-JLSW-RSY4] 2015-09-03 22:41:15,427 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] ___ User Directories (Ordered) ______________ DELEGATING : JIRA Delegated Authentication Directory Implementing Class : com.atlassian.crowd.directory.DelegatedAuthenticationDirectory Allowed Operations : UPDATE_ROLE, UPDATE_USER, DELETE_USER, UPDATE_USER_ATTRIBUTE, DELETE_ROLE, CREATE_USER, CREATE_GROUP, DELETE_GROUP, CREATE_ROLE, UPDATE_ROLE_ATTRIBUTE, UPDATE_GROUP, UPDATE_GROUP_ATTRIBUTE Encryption Type : Active : false Attributes : crowd.delegated.directory.auto.create.user : false crowd.delegated.directory.type : com.atlassian.crowd.directory.GenericLDAP ldap.basedn : ou=staff,dc=office,dc=mycompany,dc=net ldap.external.id : entryUUID ldap.password : xxxxxx ldap.url : ldap://10.6.60.6:3268 ldap.user.username : userPrincipalName ldap.userdn : CN=authuser,ou=not staff,DC=office,DC=mycompany,DC=net INTERNAL : JIRA Internal Directory Implementing Class : com.atlassian.crowd.directory.InternalDirectory Allowed Operations : DELETE_ROLE, DELETE_USER, UPDATE_GROUP, UPDATE_ROLE, DELETE_GROUP, CREATE_USER, UPDATE_USER_ATTRIBUTE, UPDATE_USER, CREATE_GROUP, UPDATE_GROUP_ATTRIBUTE, CREATE_ROLE, UPDATE_ROLE_ATTRIBUTE Encryption Type : atlassian-security Active : true Attributes : user_encryption_method : atlassian-security CONNECTOR : Active Directory server Implementing Class : com.atlassian.crowd.directory.MicrosoftActiveDirectory Allowed Operations : UPDATE_GROUP_ATTRIBUTE, DELETE_GROUP, UPDATE_USER_ATTRIBUTE, UPDATE_GROUP, CREATE_GROUP Encryption Type : sha Active : true Attributes : autoAddGroups : jira-users|All Assignable Users com.atlassian.crowd.directory.sync.currentstartsynctime : com.atlassian.crowd.directory.sync.issynchronising : false com.atlassian.crowd.directory.sync.lastdurationms : 3951 com.atlassian.crowd.directory.sync.laststartsynctime : 1441318653535 crowd.sync.incremental.enabled : true directory.cache.synchronise.interval : 3600 ldap.basedn : ou=staff,dc=office,dc=mycompany,dc=net ldap.connection.timeout : 10000 ldap.external.id : objectGUID ldap.group.description : description ldap.group.dn : ou=groups ldap.group.filter : (objectCategory=Group) ldap.group.name : cn ldap.group.objectclass : group ldap.group.usernames : member ldap.local.groups : true ldap.nestedgroups.disabled : true ldap.pagedresults : true ldap.pagedresults.size : 1000 ldap.password : xxxxxx ldap.pool.initsize : ldap.pool.maxsize : ldap.pool.prefsize : ldap.pool.timeout : 0 ldap.propogate.changes : false ldap.read.timeout : 120000 ldap.referral : true ldap.relaxed.dn.standardisation : true ldap.roles.disabled : true ldap.search.timelimit : 60000 ldap.secure : false ldap.url : ldap://10.6.60.6:389 ldap.user.displayname : displayName ldap.user.dn : ldap.user.email : mail ldap.user.encryption : sha ldap.user.filter : (&(objectClass=user)(userPrincipalName=*)) ldap.user.firstname : givenName ldap.user.group : memberOf ldap.user.lastname : sn ldap.user.objectclass : user ldap.user.password : xxxxxx ldap.user.username : userPrincipalName ldap.user.username.rdn : userPrincipalName ldap.userdn : authuser@office.mycompany.net ldap.usermembership.use : false ldap.usermembership.use.for.groups : false localUserStatusEnabled : false ___ Core Application Properties ____________ Version : 6.2.1 Build # : 6256 Build Date : Tue Mar 11 00:00:00 UTC 2014 Installation Type : Standalone Server ID : AG8D-3RC5-JLSW-RSY4 Base URL : https://test-jira.mycompany.net Default Language : English (United States) External User Management : OFF ___ Application Properties _________________ AO_4AEACD_# : 1 AO_86ED1B_# : 2 AO_E8B6CC_# : 13 com.atlassian.activeobjects.admin.ActiveObjectsPluginToTablesMapping : null com.atlassian.crowd.embedded.admin:build : 3 com.atlassian.jira.gadgets:build : 1 com.atlassian.jira.jira-mail-plugin:build : 2 com.atlassian.jira.lookandfeel:build : 1 com.atlassian.jira.lookandfeel:customDefaultFaviconHiresURL : /images/64jira.png com.atlassian.jira.lookandfeel:customDefaultFaviconURL : /favicon.ico com.atlassian.jira.lookandfeel:faviconHeight : 64 com.atlassian.jira.lookandfeel:faviconWidth : 64 com.atlassian.jira.lookandfeel:isDefaultFavicon : false com.atlassian.jira.lookandfeel:usingCustomFavicon : false com.atlassian.jira.lookandfeel:usingCustomLogo : false com.atlassian.jira.plugin.ext.bamboo:build : 1 com.atlassian.jira.plugins.jira-bitbucket-connector-plugin:build : 2 com.atlassian.jira.plugins.jira-importers-plugin:build : 1 com.atlassian.jira.plugins.jira-workflow-designer:build : 1 com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin:build : 2 com.atlassian.jira.project-templates-plugin:build : 2001 com.atlassian.jira.util.index.IndexingCounterManagerImpl.counterValue : 9 com.atlassian.jirawallboard.atlassian-wallboard-plugin:build : 6085 com.atlassian.plugins.atlassian-nav-links-plugin:build : 1 com.atlassian.plugins.atlassian-whitelist-api-plugin:build : 4 com.atlassian.plugins.atlassian-whitelist-api-plugin:whitelist.enabled : true com.atlassian.plugins.custom_apps.hasCustomOrder : false com.atlassian.sal.jira:build : 2 com.atlassian.upm.Sys:upm-settings:updated-upm-version : 2.7.7 com.atlassian.upm.atlassian-universal-plugin-manager-plugin:build : 5 com.atlassian.upm.core.Sys:upm-settings:updated-upm-version : 2.15.0 com.atlassian.upm.impl.PluginSettingsPluginUpdateRequestStoreplugin-update-requests : #java.util.List com.atlassian.upm.license.internal.impl.PluginSettingsLicenseTokenStore:license-tokens : #java.util.List com.atlassian.upm.license.internal.impl.PluginSettingsPluginLicenseR1a6ee1b8bea5c840c453bce36750f8e2 : null com.atlassian.upm.license.internal.impl.PluginSettingsPluginLicenseR8bdca18bb1b7389d0a2d834a01247d76 : null com.atlassian.upm.license.internal.impl.PluginSettingsPluginLicenseRf4853d418a2c02a9158980e9f4775c67 : null com.atlassian.upm.license.internal.impl.PluginSettingsPluginLicenseRfdbfad06c2f1036a60cb955d7e285d69 : #java.util.List com.pyxis.greenhopper.jira is.origo.jira.tempo-plugin com.resolution.atlasplugins.samlsso.Jira com.atlassian.upm.log.PluginSettingsAuditLogService:log:upm_audit_log_v3 : null com.atlassian.upm.mail.impl.PluginSettingsLicenseEmailStorelicense-emails_v2 : #java.util.List com.atlassian.upm.notification.ManualUpdateRequiredNotificationServi4132bc4b6b94205656e44360bcb38069 : #java.util.List com.atlassian.upm.request.PluginSettingsPluginRequestStore:requests:requests_v2 : null com.atlassian.upm.self-update : #java.util.Properties #Fri Apr 18 10:26:46 PDT 2014 autoUpdate=false selfUpdatePluginBundleId=142 fromBundleId=131 com.atlassian.upm:notifications:dismissal-auto.updated.plugin : #java.util.List com.atlassian.upm:notifications:dismissal-auto.updated.upm : #java.util.List com.atlassian.upm:notifications:dismissal-edition.mismatch : #java.util.List com.atlassian.upm:notifications:dismissal-edition.mismatch:com.atlas0fa4c02ed2aecb7d22ebac9617269cf4 : #java.util.List com.atlassian.upm:notifications:dismissal-evaluation.expired : #java.util.List com.atlassian.upm:notifications:dismissal-evaluation.expired:com.atlbae935a50e56249b66ab2c8c04a90ca1 : #java.util.List com.atlassian.upm:notifications:dismissal-evaluation.nearlyexpired:c9dbd09450bf6b8d302b940614c7ebd4e : #java.util.List com.atlassian.upm:notifications:dismissal-maintenance.expired : #java.util.List com.atlassian.upm:notifications:dismissal-maintenance.expired:com.at25cb37ed12faa1d1929e4073966cf3e7 : #java.util.List com.atlassian.upm:notifications:dismissal-maintenance.nearlyexpired:133f1b9e611c010bd8ef15c33c3b01de : #java.util.List com.atlassian.upm:notifications:dismissal-plugin.request : #java.util.List com.atlassian.upm:notifications:dismissal-plugin.request:com.atlassi228ad4702cee5966a4e50d4c243fbced : #java.util.List com.atlassian.upm:notifications:dismissal-plugin.request:com.onresolve.jira.groovy.groovyrunner : #java.util.List siamac.saatchi@mycompany.net eric.parusel@mycompany.net jonathan.lee@mycompany.net ulrich.blumensaat@mycompany.net lu.vo@mycompany.net com.atlassian.upm:notifications:dismissal-update:com.atlassian.upm.a2bf5e40a7ef65f2c621d51d87c41be3d : #java.util.List com.atlassian.upm:notifications:notification-edition.mismatch : #java.util.List com.atlassian.upm:notifications:notification-evaluation.expired : #java.util.List com.atlassian.upm:notifications:notification-evaluation.nearlyexpired : #java.util.List com.atlassian.upm:notifications:notification-maintenance.expired : #java.util.List com.atlassian.upm:notifications:notification-maintenance.nearlyexpired : #java.util.List com.atlassian.upm:notifications:notification-new.licenses : 2 com.atlassian.upm:notifications:notification-plugin.request : #java.util.List com.onresolve.jira.groovy.groovyrunner com.atlassian.upm:notifications:notification-update : null com.atlassian.upm:notifications:notification-updated.licenses : 0 com.atlassian.upm:notifications:notification-user.mismatch : #java.util.List com.balsamiq.mockups.license.companyName : My Company com.balsamiq.mockups.license.serialKey : eNrzzU/OLi0o9vIMcqxxz8lPSsxRCErNSaxUcM7PzS3Ny0xOLMnMzyuuMTQyMzEzMzUzAIEa5xpDAwBrJxOI com.balsamiq.mockups.license.trialStartDate : 1265058327464 com.marvelution.jira.plugins.jenkins:build : 3 com.pyxis.greenhopper.jira:build : 42 com.resolution.atlasplugins.samlsso:base64encodedIdPCertificate : null com.resolution.atlasplugins.samlsso:defaultRedirectUrl : / com.resolution.atlasplugins.samlsso:groupsToAddUserTo : com.resolution.atlasplugins.samlsso:idpUrl : https://idp2.mycompany.net/adfs/ls com.resolution.atlasplugins.samlsso:loginPageUrl : /login.jsp com.resolution.atlasplugins.samlsso:relayStateParameterName : RelayState com.resolution.atlasplugins.samlsso:setLoginUrl : YES com.resolution.atlasplugins.samlsso:useridTransformationRegex : com.resolution.atlasplugins.samlsso:useridTransformationReplacement : com.tempoplugin.tempo-accounts:build : 104 com.tempoplugin.tempo-core:build : 103 com.tempoplugin.tempo-plan-core:build : 103 com.tempoplugin.tempo-teams:build : 109 dvcs.connector.bitbucket.url : https://bitbucket.org dvcs.connector.github.url : https://github.com google.site.verification.key : is.origo.jira.tempo-plugin:build : 727 jira-header-plugin.studio-tab-migration-complete : migrated jira.admin.gadget.task.list.enabled : false jira.ads.disabled : true jira.ajax.autocomplete.issuepicker.enabled : true jira.ajax.autocomplete.labelsuggestion.limit : 20 jira.ajax.autocomplete.limit : 20 jira.alertheader : null jira.alertheader.visibility : public jira.assignee.change.is.sent.to.both.parties : true jira.attachment.allow.zip.support : true jira.attachment.do.not.expand.as.zip.extensions.list : docx, docm, dotx, dotm, xlsx, xlsm, xltx, xltm, xlsb, xlam, pptx, pptm, potx, potm, ppam, ppsx, ppsm, sldx, sldm, thmx, odt, odp, ods, odg, odb, odf, ott, otp, os, otg, odm, sxw, stw, sxc, stc, sxi, sti, sxd, std, sxg jira.attachment.download.mime.sniffing.workaround : insecure jira.attachment.number.of.zip.entries : 30 jira.autoexport : true jira.avatar.default.id : 10011 jira.avatar.megapixels : 10 jira.avatar.user.anonymous.id : 10163 jira.avatar.user.default.id : 10162 jira.baseurl : https://test-jira.mycompany.net jira.browser.unsupported.warnings.disabled : false jira.btf.analytics.enabled : false jira.bulk.edit.limit.issue.count : 1000 jira.chart.days.previous.limit.daily : 300 jira.chart.days.previous.limit.hourly : 10 jira.chart.days.previous.limit.monthly : 7500 jira.chart.days.previous.limit.quarterly : 22500 jira.chart.days.previous.limit.weekly : 1750 jira.chart.days.previous.limit.yearly : 36500 jira.clone.linktype.name : Cloners jira.clone.prefix : CLONE - jira.comment.collapsing.minimum.hidden : 4 jira.comment.level.visibility.groups : true jira.constant.default.priority : 10000 jira.constant.default.resolution : 10100 jira.contact.administrators.message : null jira.dashboard.max.gadgets : 20 jira.databasequery.batch.size : 100 jira.date.picker.java.format : d/MMM/yy jira.date.picker.javascript.format : %e/%b/%y jira.date.time.picker.java.format : dd/MMM/yy h:mm a jira.date.time.picker.javascript.format : %e/%b/%y %I:%M %p jira.date.time.picker.use.iso8061 : false jira.db.txns.disabled : false jira.default.jndi.name : java:comp/env/jdbc/JiraDS jira.disable.login.gadget : false jira.disable.multipart.get.http.request : true jira.downgrade.minimum.version : 6.1.7 jira.edition : enterprise jira.email.fromheader.format : ${fullname} (JIRA) jira.enabled.dark.features : jira.export.fetchsize : -1 jira.exportimport.cleanxml : true jira.gadget.applink.upgrade.finished : true jira.home : jira.i18n.include.meta-data : true jira.i18n.language.index : english jira.import.maxqueuesize : 100 jira.import.threads : 10 jira.index.background.batch.size : 1000 jira.index.batch.maxbuffereddocs : 300 jira.index.batch.maxmergedocs : 2147483647 jira.index.batch.mergefactor : 50 jira.index.interactive.maxbuffereddocs : 300 jira.index.interactive.maxmergedocs : 2147483647 jira.index.interactive.mergefactor : 4 jira.index.issue.maxqueuesize : 1000 jira.index.issue.minbatchsize : 50 jira.index.issue.threads : 10 jira.index.lock.waittime : 30000 jira.index.max.reindexes : 2147483647 jira.index.maxfieldlength : 10000 jira.index.mergepolicy.expungedeletespctallowed : 10 jira.index.mergepolicy.floorsegmentmb : 2 jira.index.mergepolicy.maxmergeatonce : 10 jira.index.mergepolicy.maxmergeatonceexplicit : 30 jira.index.mergepolicy.maxmergedsegmentmb : 512 jira.index.mergepolicy.nocfspct : 10 jira.index.mergepolicy.segmentspertier : 10 jira.index.mergepolicy.usecompoundfile : true jira.index.sharedentity.maxqueuesize : 1000 jira.index.sharedentity.minbatchsize : 50 jira.index.sharedentity.threads : 10 jira.index.update.bulk.optimization : 400 jira.issue.actions.order : asc jira.issue.desc.environment : For example operating system, software platform and/or hardware specifications (include as appropriate for the issue). jira.issue.desc.original.timetrack : This value can not be changed after work has begun on the issue. jira.issue.desc.timetrack : An estimate of how much work remains until this issue will be resolved.<br> The format of this is ' *w *d *h *m ' (representing weeks, days, hours and minutes - where * can be any number)<br> Examples: 4d, 5h 30m, 60m and 3w. jira.issue.inline.edit.disabled : false jira.issueindex.fetch.size : 200 jira.issuenav.criteria.autoupdate : true jira.jql.autocomplete.disabled : false jira.lf.application.id : jira jira.lf.date.complete : dd/MMM/yy h:mm a jira.lf.date.day : EEEE h:mm a jira.lf.date.dmy : dd/MMM/yy jira.lf.date.relativize : true jira.lf.date.time : h:mm a jira.lf.edit.version : 2 jira.lf.favicon.hires.url : /images/64jira.png jira.lf.favicon.url : /favicon.ico jira.lf.gadget.color1 : #3b73af jira.lf.gadget.color2 : #d04437 jira.lf.gadget.color3 : #ea632b jira.lf.gadget.color4 : #14892c jira.lf.gadget.color5 : #205081 jira.lf.gadget.color6 : #654982 jira.lf.gadget.color7 : #707070 jira.lf.hero.button.base.bg.colour : #3b7fc4 jira.lf.hero.button.text.colour : #ffffff jira.lf.logo.height : 30 jira.lf.logo.show.application.title : false jira.lf.logo.url : /images/icon-jira-logo.png jira.lf.logo.width : 57 jira.lf.menu.bgcolour : #3b73af jira.lf.menu.separator : #f0f0f0 jira.lf.menu.textcolour : #ffffff jira.lf.text.activelinkcolour : #3b73af jira.lf.text.headingcolour : #292929 jira.lf.text.linkcolour : #3b73af jira.lf.top.bgcolour : #ff0000 jira.lf.top.hilightcolour : #296CA3 jira.lf.top.separator.bgcolor : #2E3D54 jira.lf.top.textcolour : #ffffff jira.lf.top.texthilightcolour : #f0f0f0 jira.mail.fetch.disabled : false jira.mail.send.disabled : false jira.max.AdminPage.history.items : 5 jira.max.Issue.history.items : 50 jira.max.JQLQuery.history.items : 10 jira.max.history.items : 10 jira.max.issue.filter.dropdown.items : 10 jira.max.issue.history.dropdown.items : 6 jira.maximum.authentication.attempts.allowed : jira.mode : private jira.option.allowattachments : false jira.option.allowcookies : true jira.option.allowsubtasks : true jira.option.allowthumbnails : true jira.option.allowunassigned : true jira.option.captcha.on.signup : false jira.option.emailvisible : user jira.option.ignore.url.with.key : true jira.option.indexing : true jira.option.issuelinking : true jira.option.logoutconfirm : never jira.option.precedence.header.exclude : false jira.option.rpc.allow : true jira.option.timetracking : true jira.option.trackback.receive : true jira.option.trackback.send : true jira.option.trackback.send.public : false jira.option.user.crowd.allow.rename : true jira.option.user.externalmanagement : false jira.option.user.externalpasswordmanagement : true jira.option.voting : false jira.option.watching : true jira.option.web.usegzip : true jira.path.attachments : /jira_attachments jira.path.index : /opt/jira jira.path.index.use.default.directory : true jira.project.description.html.enabled : true jira.project.summary.max.issues : 3 jira.projectkey.description : admin.projects.key.description jira.projectkey.maxlength : 10 jira.projectkey.pattern : ([A-Z][A-Z]+) jira.projectkey.reservedwords.list : PRN, AUX, CLOCK$, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, CON, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9 jira.projectkey.warning : admin.errors.must.specify.unique.project.key jira.projectname.maxlength : 80 jira.releasenotes.default : Html jira.releasenotes.templatenames : Html, Text jira.releasenotes.templates : releasenotes-html.vm, releasenotes-text.vm jira.scheme.default.issue.type : 10000 jira.schemes.comparison.max : 5 jira.screenshotapplet.enabled : true jira.screenshotapplet.linux.enabled : false jira.search.cache.max.size : 20 jira.search.fullcontentview.pagebreaks : true jira.search.maxclauses : 65000 jira.search.stable.max.results : 1000 jira.search.views.default.max : 1000 jira.search.views.max.limit : 1000 jira.search.views.max.unlimited.group : jira.sendmail.recipient.batch.size : 100 jira.setup : true jira.show.contact.administrators.form : false jira.subscription.email.max.issues : 200 jira.table.cols.dashboard : issuetype, issuekey, summary, priority jira.table.cols.subtasks : issuetype, status, assignee, progress jira.table.cols.voted : issuetype, issuekey, summary, priority, status jira.table.cols.watched : issuetype, issuekey, summary, priority, status jira.table.gadget.max.rows : 50 jira.text.field.character.limit : 0 jira.thumbnail.maxheight : 200 jira.thumbnail.maxwidth : 200 jira.timetracking.copy.comment.to.work.desc.on.transition : true jira.timetracking.days.per.week : 5 jira.timetracking.estimates.legacy.behaviour : true jira.timetracking.format : days jira.timetracking.hours.per.day : 8 jira.title : My Company Communications Inc. jira.trustedapp.key.private.data : null jira.trustedapp.key.public.data : null jira.trustedapp.uid : jira:8701589 jira.trustedapps.timeout.default : 10000 jira.trustedapps.urlmatch.default : /sr/jira.issueviews:searchrequest /secure/RunPortlet /rest /rpc/soap /plugins/servlet/streams /plugins/servlet/applinks jira.user.avatar.gravatar.enabled : false jira.usermanagement.maxdisplaymembers : 200 jira.version : 6.2.1 jira.version.patched : 6256 jira.view.issue.links.sort.order : type, status, priority jira.view.issue.show.quicksubtask.when.no.subtasks : false jira.viewcvs.root.type : cvsroot jira.webresource.flushcounter : 4 jira.webresource.superbatch.flushcounter : 30 jira.websudo.is.disabled : false jira.websudo.timeout : 10 jira.whitelist.disabled : false jira.whitelist.rules : null jira.xsrf.enabled : true ops.bar.group.size.opsbar-admin : 0 ops.bar.group.size.opsbar-transitions : 2 remoteapps.lastVersion.remoteapps : 0.4.518 remoteapps.lastVersion.server : 787 show.plugin.marketing.hints : true user.default.share.private : true user.issues.per.page : 100 user.keyboard.shortcuts.disabled : false user.notifications.mimetype : html user.notify.own.changes : true user.show.actions.in.navigator : false webwork.i18n.encoding : UTF-8 webwork.multipart.maxSize : 20971520 ___ License Details ________________________ License Set : true Entitled To Support : true Evaluation : false Description : JIRA (Server) 500 Users: Commercial License SEN : SEN-449132 Organisation : My Company Communications Inc. Partner : Maximum Number Of Users : 500 ___ Database Statistics ____________________ Issues : 112881 Projects : 85 Custom Fields : 131 Workflows : 35 Users : 1209 Groups : 125 Attachments : 58590 Comments : 0 ___ Upgrade History ________________________ 6.2.1#6256 Time Performed : 2014-04-18 17:24:09.099 Original Version : 5.1.8#787 5.1.8#787 Time Performed : 2012-11-03 14:48:09.86 Original Version : 4.1.2#531 4.1.2#531 Time Performed : 2010-09-13 09:59:21.642 Original Version : 4.0#466 4.0#466 Time Performed : Unknown ___ File Paths _____________________________ JIRA Home : /var/atlassian/application-data/jira JIRA Local Home : /var/atlassian/application-data/jira Location of atlassian-jira.log : /var/atlassian/application-data/jira/log/atlassian-jira.log Index Path : /var/atlassian/application-data/jira/caches/indexes Attachment Path : /jira_attachments ___ User Plugins ____________________________ Number : 0 ___ System Plugins __________________________ Number : 133 ASM : org.objectweb.asm-3.3.1.v201105211655 Version : 3.3.1.v201105211655 Status : enabled Vendor : Eclipse Orbit Description : ActiveObjects Plugin - OSGi Bundle : com.atlassian.activeobjects.activeobjects-plugin Version : 0.23.2 Status : enabled Vendor : Atlassian Description : An OSGi bundle that provides a service that allows plugins to persist objects using the ActiveObjects framework Apache HttpClient OSGi bundle : org.apache.httpcomponents.httpclient-4.2.5 Version : 4.2.5 Status : enabled Vendor : The Apache Software Foundation Description : HttpComponents Client (OSGi bundle) Apache HttpCore OSGi bundle : org.apache.httpcomponents.httpcore-4.2.4 Version : 4.2.4 Status : enabled Vendor : The Apache Software Foundation Description : HttpComponents Core (OSGi bundle) Apache ServiceMix :: Bundles :: javax.inject : org.apache.servicemix.bundles.javax-inject-1.0.0.1 Version : 1.0.0.1 Status : enabled Vendor : The Apache Software Foundation Description : This OSGi bundle wraps javax.inject 1 jar file. Applinks Product Plugin : com.atlassian.applinks.applinks-plugin Version : 4.1.1 Status : enabled Vendor : Atlassian Description : Plugin that facilitates discovery, connections and authentication with remote applications Atlassian - Administration - Quick Search - JIRA : com.atlassian.administration.atlassian-admin-quicksearch-jira Version : 1.5 Status : enabled Vendor : Atlassian Description : Administration Quick Search plugin for JIRA Atlassian Awareness Capability : com.atlassian.plugins.atlassian-awareness-capability Version : 0.0.5 Status : enabled Vendor : Atlassian Description : This is the com.atlassian.plugins:atlassian-awareness-capability plugin for Atlassian Products. Atlassian Bot Session Killer : com.atlassian.labs.atlassian-bot-killer Version : 1.7.5 Status : enabled Vendor : Atlassian Description : This will remove unwanted http sessions for requests that exhibit Bot like behaviour. That is they make a single request, don't preserve cookies and never call agan. Atlassian Embedded Crowd - Administration Plugin : com.atlassian.crowd.embedded.admin Version : 1.7.3 Status : enabled Vendor : Atlassian Description : Provides the administration of local and remote user directories. Atlassian Gadgets OAuth Service Provider Plugin : com.atlassian.gadgets.oauth.serviceprovider Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin that makes OAuth Service Providers Gadget aware. Atlassian HTTP Client, Apache HTTP components impl : com.atlassian.httpclient.atlassian-httpclient-plugin Version : 0.17.3 Status : enabled Vendor : Atlassian Description : Implementation of the HTTP Client API based on Apache HTTP Components Atlassian HealthCheck Common Module : com.atlassian.healthcheck.atlassian-healthcheck Version : 2.0.4 Status : enabled Vendor : Atlassian Description : Provides the health-check module and rest endpoints for running the health checks. Atlassian JIRA - Admin Helper Plugin : com.atlassian.jira.plugins.jira-admin-helper-plugin Version : 1.18.0 Status : enabled Vendor : Atlassian Pty Ltd Description : The Admin Helper plugin helps admins determine visibility of custom fields and also provides reasons for why a user does not have certain permissions on an issue o does not receive notifications for that issue. Atlassian JIRA - Plugins - Admin Navigation Component : com.atlassian.jira.jira-admin-navigation-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Supplies Content to the JIRA Administration Navigation Atlassian JIRA - Plugins - Application Properties : com.atlassian.jira.jira-application-properties-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides advanced application properties configuration Atlassian JIRA - Plugins - Closure Template Renderer : com.atlassian.jira.jira-soy-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides renderer for Closure templates Atlassian JIRA - Plugins - Common AppLinks Based Issue Link Plugin : com.atlassian.jira.jira-issue-link-applinks-common-plugin Version : 6.2.1 Status : enabled Vendor : ${project.organization.name} Description : Provides the common utilities for AppLinks based issue link plugins Atlassian JIRA - Plugins - Confluence Link : com.atlassian.jira.jira-issue-link-confluence-plugin Version : 6.2.1 Status : enabled Vendor : ${project.organization.name} Description : Provides creation and rendering of issue links to Confluence pages Atlassian JIRA - Plugins - Development Integration Plugin : com.atlassian.jira.plugins.jira-development-integration-plugin Version : 1.0.0054 Status : enabled Vendor : Atlassian Description : Provides better integration for Development Projects In JIRA Atlassian JIRA - Plugins - Gadgets Plugin : com.atlassian.jira.gadgets Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides Gadgets and REST endpoints bundled with JIRA Atlassian JIRA - Plugins - Header Plugin : com.atlassian.jira.jira-header-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides markup/styles/behaviour/plugin points for the header Atlassian JIRA - Plugins - Healthcheck Plugin : com.atlassian.jira.plugins.jira-healthcheck-plugin Version : 1.0.9 Status : enabled Vendor : Atlassian Description : This plugin provides health checks for JIRA Atlassian JIRA - Plugins - Invite User : com.atlassian.jira.jira-invite-user-plugin Version : 1.15 Status : enabled Vendor : Atlassian Description : Allows administrators to invite users to sign up for an account Atlassian JIRA - Plugins - Issue Navigation : com.atlassian.jira.jira-issue-nav-plugin Version : 6.2.100 Status : enabled Vendor : Atlassian Description : Provides issue search and navigation (rev: 4b1727d, date: 2014-03-04T00:14:19+0000) Atlassian JIRA - Plugins - Issue Web Link : com.atlassian.jira.jira-issue-link-web-plugin Version : 6.2.1 Status : enabled Vendor : ${project.organization.name} Description : Provides creation and rendering of issue links to web pages Atlassian JIRA - Plugins - Look And Feel Logo Upload Plugin : com.atlassian.jira.lookandfeel Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides logo upload capabilities Atlassian JIRA - Plugins - Mail Plugin : com.atlassian.jira.jira-mail-plugin Version : 6.2.0 Status : enabled Vendor : Atlassian Description : Handles incoming and outgoing mail Atlassian JIRA - Plugins - My JIRA Home : com.atlassian.jira.jira-my-home-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Lets the user pick a landing page. Atlassian JIRA - Plugins - OAuth Consumer SPI : com.atlassian.jira.oauth.consumer Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides the Consumer SPI implementation required for OAuth in JIRA. Atlassian JIRA - Plugins - OAuth Service Provider SPI : com.atlassian.jira.oauth.serviceprovider Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides the OAuth Service Provider SPI implementation required for OAuth in JIRA. Atlassian JIRA - Plugins - Project Config Plugin : com.atlassian.jira.jira-project-config-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides easier project administration with JIRA Atlassian JIRA - Plugins - Quick Edit Plugin : com.atlassian.jira.jira-quick-edit-plugin Version : 1.0.87 Status : enabled Vendor : Atlassian Description : This is the com.atlassian.jira:jira-quick-edit-plugin plugin for Atlassian JIRA. Atlassian JIRA - Plugins - REST Plugin : com.atlassian.jira.rest Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Provides a REST interface for JIRA Atlassian JIRA - Plugins - Remote JIRA Link : com.atlassian.jira.jira-issue-link-remote-jira-plugin Version : 6.2.1 Status : enabled Vendor : ${project.organization.name} Description : Provides creation and rendering of links to local and remote JIRA issues Atlassian JIRA - Plugins - SAL Plugin : com.atlassian.sal.jira Version : 6.2.1 Status : enabled Vendor : Atlassian Software Systems Description : JIRA implementation of the Shared Application Access Layer (SAL) Atlassian JIRA - Plugins - Share Content Component : com.atlassian.jira.jira-share-plugin Version : 6.2.1 Status : enabled Vendor : Atlassian Description : Allows users to share issue and searches Atlassian JIRA - Plugins - User Profile Plugin : com.atlassian.jira.jira-user-profile-plugin Version : 1.1.3 Status : enabled Vendor : Atlassian Description : Plugin uses web-panels to encapsulate details and preferences modules from user profile page. Atlassian JIRA - Plugins - View Issue Panels : com.atlassian.jira.jira-view-issue-plugin Version : 6.2.1 Status : enabled Vendor : ${project.organization.name} Description : Provides WebPanels for the View Issue Page Atlassian Navigation Links Plugin : com.atlassian.plugins.atlassian-nav-links-plugin Version : 3.2.18 Status : enabled Vendor : Atlassian Description : Capabilities and Navigation API client and server implementation Atlassian OAuth Admin Plugin : com.atlassian.oauth.admin Version : 1.9.0-m3 Status : enabled Vendor : Atlassian Description : Plugin that provides a single tabbed view for administering OAuth consumers and service provider information. Atlassian OAuth Consumer Plugin : com.atlassian.oauth.consumer Version : 1.9.0-m3 Status : enabled Vendor : Atlassian Description : Plugin that makes it possible for applications to become Consumers. Atlassian OAuth Consumer SPI : com.atlassian.oauth.atlassian-oauth-consumer-spi-1.9.0.m3 Version : 1.9.0.m3 Status : enabled Vendor : Atlassian Description : Consumer SPIs to allow applications to provide custom implementations of storing token and consumer info Atlassian OAuth Service Provider Plugin : com.atlassian.oauth.serviceprovider Version : 1.9.0-m3 Status : enabled Vendor : Atlassian Description : Plugin that makes it possible for applications to become Service Providers. Atlassian OAuth Service Provider SPI : com.atlassian.oauth.atlassian-oauth-service-provider-spi-1.9.0.m3 Version : 1.9.0.m3 Status : enabled Vendor : Atlassian Description : Service Provider SPIs to allow applications to provide custom implementations of storing token consumer info Atlassian Plugins - Web Resources - Implementation Plugin : com.atlassian.plugins.atlassian-plugins-webresource-plugin Version : 3.0.0-m24 Status : enabled Vendor : Atlassian Description : Base POM for Atlassian projects Atlassian Pretty URLs Plugin : com.atlassian.prettyurls.atlassian-pretty-urls-plugin Version : 1.8 Status : enabled Vendor : Atlassian Description : Pretty URL support in Atlassian products Atlassian REST - Module Types : com.atlassian.plugins.rest.atlassian-rest-module Version : 2.8.4 Status : enabled Vendor : Atlassian Description : A plugin that contains REST module types Atlassian Soy Templates - Plugin : com.atlassian.soy.soy-template-plugin Version : 2.1.1 Status : enabled Vendor : Atlassian Description : Base POM for Atlassian projects Atlassian Template Renderer API : com.atlassian.templaterenderer.api Version : 1.4.4-m1 Status : enabled Vendor : Atlassian Description : API and plugins for easily rendering content from different template engines. Atlassian Template Renderer Velocity 1.6 Plugin : com.atlassian.templaterenderer.atlassian-template-renderer-velocity1.6-plugin Version : 1.4.4-m1 Status : enabled Vendor : Atlassian Description : API and plugins for easily rendering content from different template engines. Atlassian UI Plugin : com.atlassian.auiplugin Version : 5.3.5 Status : enabled Vendor : Atlassian Description : An Atlassian plugin that contains the core javascript files used in Atlassian products. Atlassian Universal Plugin Manager Plugin : com.atlassian.upm.atlassian-universal-plugin-manager-plugin Version : 2.15 Status : enabled Vendor : Atlassian Description : This is the plugin that provides the Atlassian Universal Plugin Manager. Atlassian WebHooks Plugin : com.atlassian.webhooks.atlassian-webhooks-plugin Version : 0.17.4 Status : enabled Vendor : Atlassian Description : Send expectedEvents over HTTP to registered listeners. Atlassian Whitelist API Plugin : com.atlassian.plugins.atlassian-whitelist-api-plugin Version : 1.6 Status : enabled Vendor : Atlassian Description : The plugin provides an API to access and persist whitelist information. Atlassian Whitelist UI Plugin : com.atlassian.plugins.atlassian-whitelist-ui-plugin Version : 1.6 Status : enabled Vendor : Atlassian Description : The plugin provides a user interface to view and modify the application's whitelist. Bitbucket Importer Plugin for JIM : com.atlassian.jira.plugins.jira-importers-bitbucket-plugin Version : 1.0.4 Status : enabled Vendor : Atlassian Description : A plugin for JIM which provides capability to import JIRA issues from Bitbucket. Requires JIM version 6.0.4+ Crowd REST API : crowd-rest-application-management Version : 1.0 Status : enabled Vendor : Atlassian Software Systems Description : Crowd REST API - Application Management Crowd REST API : crowd-rest-plugin Version : 1.0 Status : enabled Vendor : Atlassian Software Systems Description : Crowd REST API Crowd System Password Encoders : crowd.system.passwordencoders Version : 1.0 Status : enabled Vendor : Atlassian Software Systems Description : Crowd Password Encoders shipped with Crowd Embedded Gadgets Plugin : com.atlassian.gadgets.embedded Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin which allows gadgets to be embedded in pages English (United Kingdom) Language Pack : com.atlassian.jira.jira-languages.en_UK Version : 6.2.1 Status : enabled Vendor : Atlassian Description : This plugin contains translations the core keys in JIRA for English (United Kingdom). English (United States) Language Pack : com.atlassian.jira.jira-languages.en_US Version : 6.2.1 Status : enabled Vendor : Atlassian Description : This plugin contains translations the core keys in JIRA for English (United States). FishEye Plugin : com.atlassian.jirafisheyeplugin Version : 6.2.10 Status : enabled Vendor : Atlassian Software Systems Description : JIRA Fisheye Plugin Gadget Dashboard Plugin : com.atlassian.gadgets.dashboard Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin which renders a dashboard of gadgets Gadget Directory Plugin : com.atlassian.gadgets.directory Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin which renders a directory of gadgets Gadget Spec Publisher Plugin : com.atlassian.gadgets.publisher Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin which provides a way to publish gadget specs found in plugins HipChat Core Plugin : com.atlassian.hipchat.plugins.core Version : 0.8.1 Status : enabled Vendor : Atlassian Description : A cross product plugin that makes a set of useful HipChat features available for other plugins to use. Compatible with JIRA 5.2+ and Confluence 5.0+ HipChat for JIRA : com.atlassian.labs.hipchat.hipchat-for-jira-plugin Version : 1.2.8 Status : enabled Vendor : Atlassian Description : This is the HipChat plugin for JIRA. ICU4J : com.atlassian.bundles.icu4j-3.8.0.1 Version : 3.8.0.1 Status : enabled Vendor : Atlassian Pty Ltd Description : ICU4J as an OSGi bundle Issue Status Plugin : com.atlassian.plugins.issue-status-plugin Version : 1.1.5 Status : enabled Vendor : Atlassian Description : This plugin is used to provide assets that can be used in any Atlassian product to render JIRA issue status. JDOM DOM Processor : com.springsource.org.jdom-1.0.0 Version : 1.0.0 Status : enabled Vendor : SpringSource Description : JIRA Active Objects SPI implementation : com.atlassian.activeobjects.jira.spi Version : 0.23.2 Status : enabled Vendor : Atlassian Software Systems Description : A plugin that provides the DataSourceProvider service JIRA Activity Stream Plugin : com.atlassian.streams.streams-jira-plugin Version : 5.3.18.1 Status : enabled Vendor : Atlassian Description : Lists recent activity in a single project, or in all projects. JIRA Agile Marketing Plugin : com.atlassian.jira.plugins.greenhopper-marketing-plugin Version : 1.0.13 Status : enabled Vendor : Atlassian Description : Contributes project templates to JIRA that will trigger the installation of JIRA Agile JIRA Auditing Plugin : com.atlassian.jira.plugins.jira-auditing-plugin Version : 1.0.1 Status : enabled Vendor : Atlassian Description : JIRA Auditing Plugin JIRA Bamboo Plugin : com.atlassian.jira.plugin.ext.bamboo Version : 7.1.8 Status : enabled Vendor : Atlassian Software Systems Pty Ltd Description : Allows you to see builds and telemetry from a remote Bamboo server JIRA Base URL Plugin : com.atlassian.jira.jira-baseurl-plugin Version : 1.9 Status : enabled Vendor : Atlassian Description : Detects incorrectly-set base URLs in JIRA. JIRA Core Project Templates Plugin : com.atlassian.jira-core-project-templates Version : 2.38 Status : enabled Vendor : Atlassian Description : This is the JIRA Core Project Templates Plugin for Atlassian JIRA. (rev: cf7c079, date: 2014-03-07T21:08:17+0000) JIRA DVCS Connector Plugin : com.atlassian.jira.plugins.jira-bitbucket-connector-plugin Version : 2.0.2 Status : enabled Vendor : Atlassian Description : JIRA DVCS Connector for JIRA, linking JIRA issues to Bitbucket and GitHub changesets. JIRA Feedback Plugin : com.atlassian.jira.jira-feedback-plugin Version : 1.12 Status : enabled Vendor : Atlassian Description : This is the feedback plugin for Atlassian JIRA. JIRA French (France) Language Pack : tac.jira.languages.fr_FR Version : 6.2.0-v2r4377-2014-03-11 Status : enabled Vendor : Atlassian Community Description : This plugin contains translations for fr_FR JIRA German (Germany) Language Pack : tac.jira.languages.de_DE Version : 6.2.0-v2r8018-2014-03-11 Status : enabled Vendor : Atlassian Community Description : This plugin contains translations for de_DE JIRA Global Permissions : jira.system.global.permissions Version : 1.0 Status : enabled Vendor : Atlassian Description : This plugin defines all of the default global permissions in JIRA. JIRA Importers Plugin (JIM) : com.atlassian.jira.plugins.jira-importers-plugin Version : 6.0.33 Status : enabled Vendor : Atlassian Description : A plugin (originally part of JIRA 4.2 and older) which provides capability to import to JIRA issues from 3rd party issue trackers: Bugzilla, FogBugz and Mantis. JIRA Issue Collector Plugin : com.atlassian.jira.collector.plugin.jira-issue-collector-plugin Version : 1.4.7 Status : enabled Vendor : Atlassian Description : This plugin provides the ability to create issues from remote applications JIRA JSON-RPC Plugin : com.atlassian.jira.rpc.jira-json-rpc-plugin Version : 1.0.4 Status : enabled Vendor : Atlassian Software Description : Exposes JIRA SOAP services using JSON-RPC JIRA Japanese (Japan) Language Pack : tac.jira.languages.ja_JP Version : 6.2.0-v2r19393-2014-03-11 Status : enabled Vendor : Atlassian Community Description : This plugin contains translations for ja_JP JIRA Mobile : com.atlassian.jira.mobile Version : 1.2 Status : enabled Vendor : Atlassian Description : This is the mobile interface for Atlassian JIRA. JIRA Monitoring Plugin : com.atlassian.jira.jira-monitoring-plugin Version : 05.5.4 Status : enabled Vendor : Atlassian Description : Records and exposes JIRA key performance metrics JIRA Password Policy Plugin : com.atlassian.jira.plugins.jira-password-policy-plugin Version : 1.1.1 Status : enabled Vendor : Atlassian Description : Provides a password policy implementation for JIRA JIRA Projects Plugin : com.atlassian.jira.jira-projects-plugin Version : 1.0.19 Status : enabled Vendor : Atlassian Description : A better project centric JIRA! JIRA Remote Link Aggregator Plugin : com.atlassian.plugins.jira-remote-link-aggregator-plugin Version : 2.0.9 Status : enabled Vendor : Atlassian Description : Aggregates counts of JIRA outbound links to a given external entity. (rev: 13809b9, date: 2014-01-16T11:02:03+1100) JIRA Spanish (Spain) Language Pack : tac.jira.languages.es_ES Version : 6.2.0-v2r17500-2014-03-11 Status : enabled Vendor : Atlassian Community Description : This plugin contains translations for es_ES JIRA Streams Inline Actions Plugin : com.atlassian.streams.jira.inlineactions Version : 5.3.18.1 Status : enabled Vendor : Atlassian Software Systems Pty Ltd Description : JIRA Streams Inline Actions Plugin JIRA Time Zone Detection plugin : com.atlassian.jira.jira-tzdetect-plugin Version : 1.8 Status : enabled Vendor : Atlassian Description : Performs client-side time zone detection for JIRA. JIRA Usage Hints : jira.usage.hints Version : 1.0 Status : enabled Vendor : Atlassian Description : This library includes the web fragments for JIRA usage hints displayed on issue operation dialogs. It should never be disabled. JIRA WebHooks Plugin : com.atlassian.jira.plugins.webhooks.jira-webhooks-plugin Version : 1.2.5 Status : enabled Vendor : Atlassian Description : This plugin provides the ability to register Web Hooks for events in JIRA JIRA Welcome Plugin : com.atlassian.jira.welcome.jira-welcome-plugin Version : 1.1.49 Status : enabled Vendor : Atlassian Description : Displays a welcome dialog for first-time usage of JIRA, as well as a whats new dialog for users just having upgraded to this version of JIRA. JIRA Workflow Designer Plugin : com.atlassian.jira.plugins.jira-workflow-designer Version : 6.2.0.1 Status : enabled Vendor : Atlassian Description : The visual way to edit JIRA Workflows. JIRA Workflow Sharing Plugin : com.atlassian.jira.plugins.workflow.sharing.jira-workflow-sharing-plugin Version : 1.1.20 Status : enabled Vendor : Atlassian Description : Enables exporting and importing of JIRA workflows across instances JIRA iCalendar Plugin : com.atlassian.jira.extra.jira-ical-feed Version : 1.0.16 Status : enabled Vendor : Atlassian Description : Provides an iCal feed of JIRA issues and versions JQL Functions : jira.jql.function Version : 1.0 Status : enabled Vendor : Atlassian Description : This plugin implements a JQL function in JIRA. JSON Library : com.atlassian.bundles.json-20070829.0.0.1 Version : 20070829.0.0.1 Status : enabled Vendor : Atlassian Pty Ltd Description : Library for manipulating JSON Keyboard Shortcuts Plugin : jira.keyboard.shortcuts Version : 1.0 Status : enabled Vendor : Atlassian Description : A plugin that defines a number of keyboard shortcuts. Neko HTML : com.atlassian.bundles.nekohtml-1.9.12.1 Version : 1.9.12.1 Status : enabled Vendor : Atlassian Pty Ltd Description : Neko HTML library as an OSGi bundle Opensocial Plugin : com.atlassian.gadgets.opensocial Version : 3.3.2 Status : enabled Vendor : Atlassian Description : Plugin for OpenSocial API Support and Gadget Rendering Project Creation Capability Product REST Plugin : com.atlassian.plugins.atlassian-project-creation-plugin Version : 1.2.5 Status : enabled Vendor : Atlassian Description : This is the com.atlassian.plugins:atlassian-project-creation-plugin plugin for Atlassian Products. Project Creation Plugin SPI for JIRA : com.atlassian.plugins.jira-project-creation Version : 1.2.5 Status : enabled Vendor : Atlassian Description : This is the com.atlassian.plugins:jira-project-creation plugin for Atlassian JIRA. Project Templates Plugin : com.atlassian.jira.project-templates-plugin Version : 2.38 Status : enabled Vendor : Atlassian Description : This is the Project Templates Plugin for Atlassian JIRA. (rev: cf7c079, date: 2014-03-07T21:08:17+0000) ROME, RSS and atOM utilitiEs for Java : rome.rome-1.0 Version : 1.0 Status : enabled Vendor : Sun Microsystems Description : All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it easy to work in Java with most syndication formats. Today it accepts all flavrs of RSS (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes a set of parsers and generators for the various flavors of feeds, as well as converters to covert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed object that lets youwork on with the data without bothering about the underlying format. ROME: RSS/Atom syndication and publishing tools : com.springsource.com.sun.syndication-0.9.0 Version : 0.9.0 Status : enabled Vendor : SpringSource Description : RPC JIRA Plugin : com.atlassian.jira.ext.rpc Version : 6.0.2 Status : enabled Vendor : Atlassian Description : The standard JIRA RPC services, both SOAP and XML-RPC. Redmine Importers Plugin for JIM : com.atlassian.jira.plugins.jira-importers-redmine-plugin Version : 2.0.4 Status : enabled Vendor : Atlassian Description : A plugin for JIM which provides capability to import JIRA issues from Redmine. Requires JIM version 5.0.2+ Remote Link Aggregator Plugin : com.atlassian.plugins.remote-link-aggregator-plugin Version : 2.0.9 Status : enabled Vendor : Atlassian Description : Aggregates counts of outbound links to a given external entity. (rev: 13809b9, date: 2014-01-16T11:02:03+1100) Sisu-Inject : org.eclipse.sisu.inject-0.0.0.atlassian6 Version : 0.0.0.atlassian6 Status : enabled Vendor : The Eclipse Foundation Description : Streams API : com.atlassian.streams.streams-api-5.3.18.1 Version : 5.3.18.1 Status : enabled Vendor : Atlassian Description : Lists recent activity in a single project, or in all projects. Streams Core Plugin : com.atlassian.streams.core Version : 5.3.18.1 Status : enabled Vendor : Atlassian Software Systems Pty Ltd Description : Streams Core Plugin Streams Inline Actions Plugin : com.atlassian.streams.actions Version : 5.3.18.1 Status : enabled Vendor : Atlassian Software Systems Pty Ltd Description : Streams Inline Actions Plugin Streams Plugin : com.atlassian.streams Version : 5.3.18.1 Status : enabled Vendor : Atlassian Software Systems Pty Ltd Description : Streams Plugin Streams SPI : com.atlassian.streams.streams-spi-5.3.18.1 Version : 5.3.18.1 Status : enabled Vendor : Atlassian Description : Lists recent activity in a single project, or in all projects. Streams Third Party Provider Plugin : com.atlassian.streams.streams-thirdparty-plugin Version : 5.3.18.1 Status : enabled Vendor : Atlassian Description : Lists recent activity in a single project, or in all projects. Support Tools Plugin : com.atlassian.support.stp Version : 3.5.6 Status : enabled Vendor : Atlassian Support Description : This is the Support Tools Plugin, developed to help Atlassian customers with our products. User Format : jira.user.format Version : 1.0 Status : enabled Vendor : Atlassian Description : This plugin renders a user in JIRA. User Profile Panels : jira.user.profile.panels Version : 1.0 Status : enabled Vendor : Atlassian Description : This library includes the panels included on the user profile page. Workbox - Common Plugin : com.atlassian.mywork.mywork-common-plugin Version : 1.8 Status : enabled Vendor : Atlassian Description : Provides Common Services to Workbox Workbox - JIRA Provider Plugin : com.atlassian.mywork.mywork-jira-provider-plugin Version : 1.8 Status : enabled Vendor : Atlassian Description : Generates notifications and tasks from JIRA atlassian-failure-cache-plugin : com.atlassian.atlassian-failure-cache-plugin Version : 0.11 Status : enabled Vendor : Atlassian Description : This is the Atlassian failure cache plugin, which provides implementations of some core components jira-help-tips : com.atlassian.plugins.helptips.jira-help-tips Version : 0.44 Status : enabled Vendor : Atlassian Description : Common way to display help tips in the UI of JIRA. jira-issue-nav-components : com.atlassian.jira.jira-issue-nav-components Version : 6.2.100 Status : enabled Vendor : Atlassian Description : Provides issue search and navigation components jquery : com.atlassian.plugins.jquery Version : 1.7.2 Status : enabled Vendor : (unknown) Description : Atlassian plugin wrapper containing only jQuery. scala-provider-plugin : com.atlassian.scala.plugins.scala-2.10-provider-plugin Version : 0.4 Status : enabled Vendor : Atlassian Description : This plugin provides the scala runtime for scala 2.10.1 sisu-guice : org.sonatype.sisu.guice-3.1.3 Version : 3.1.3 Status : enabled Vendor : Sonatype, Inc. Description : Patched build of Guice: a lightweight dependency injection framework for Java 5 and above ___ Listeners ______________________________ Instance Count : 3 Mail Listener : com.atlassian.jira.event.listeners.mail.MailListener Issue Index Listener : com.atlassian.jira.event.listeners.search.IssueIndexListener Issue Assignment Listener : com.atlassian.jira.event.listeners.history.IssueAssignHistoryListener ___ Services _______________________________ Instance Count : 17 InstanceTopologyJob-job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 19668451ms LocalPluginLicenseNotificationJob-job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 86400000ms Mail Queue Service : com.atlassian.jira.service.services.mail.MailQueueService Service Delay : 60000ms PluginRequestCheckJob-job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 3600000ms PluginUpdateCheckJob-job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 42677222ms Purchasing IMAP Issue Creation Service : com.atlassian.jira.service.services.mail.MailFetcherService Service Delay : 60000ms popserver : Purchasing IMAP Mail Server handler.params : project=PR, issuetype=23, createusers=false, bulk=ignore forwardEmail : derek.mackie@mycompany.net handler : admin.service.common.handler.create.or.comment RemotePluginLicenseNotificationJob-job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 75359932ms Service Provider Session Remover : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 28800000ms Service Provider Token Remover : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 28800000ms Unity Feedback IMAP Issue Creation Service : com.atlassian.jira.service.services.mail.MailFetcherService Service Delay : 60000ms popserver : Unity Bugs IMAP Mail Server handler.params : project=UF, issuetype=21, createusers=false, bulk=ignore forwardEmail : derek.mackie@mycompany.net handler : admin.service.common.handler.create.or.comment com.atlassian.jira.plugin.ext.bamboo.service.PlanStatusUpdateServiceImpl:job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 60000ms com.atlassian.jira.plugins.workflow.sharing.file.FileCleaningJob : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 3600000ms com.atlassian.streams.internal.ActivityProviderConnectionMonitorImpl:activityProviderMonitor : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 300000ms com.marvelution.jira.plugins.jenkins.scheduler.JenkinsSynchronisationJob : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 3600000ms com.onresolve.jira.groovy.groovyrunner:SendEvents : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 38935276ms com.onresolve.scriptrunner.canned.jira.admin.EscalationService:job : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 60000ms com.tempoplugin.scheduler.job.TempoJobRunner : com.atlassian.sal.jira.scheduling.JiraPluginSchedulerService Service Delay : 600000ms ___ Trusted Applications ___________________ Instance Count : 0 ___ Java Class Paths _______________________ sun.boot.class.path : /opt/atlassian/jira/jre/lib/resources.jar: /opt/atlassian/jira/jre/lib/rt.jar: /opt/atlassian/jira/jre/lib/sunrsasign.jar: /opt/atlassian/jira/jre/lib/jsse.jar: /opt/atlassian/jira/jre/lib/jce.jar: /opt/atlassian/jira/jre/lib/charsets.jar: /opt/atlassian/jira/jre/lib/jfr.jar: /opt/atlassian/jira/jre/classes java.library.path : /usr/java/packages/lib/amd64: /usr/lib64: /lib64: /lib: /usr/lib java.endorsed.dirs : /opt/atlassian/jira/endorsed java.ext.dirs : /opt/atlassian/jira/jre/lib/ext: /usr/java/packages/lib/ext java.class.path : /opt/atlassian/jira/bin/bootstrap.jar: /opt/atlassian/jira/bin/tomcat-juli.jar 2015-09-03 22:41:15,430 localhost-startStop-1 INFO [atlassian.jira.startup.JiraStartupLogger] ********************************************************************************* JIRA 6.2.1 build: 6256 started. You can now access JIRA through your web browser. ********************************************************************************* 2015-09-03 22:41:15,478 localhost-startStop-1 INFO [atlassian.jira.upgrade.UpgradeManagerImpl] Setting current build number to 6256 2015-09-03 22:41:15,492 localhost-startStop-1 INFO [atlassian.jira.upgrade.UpgradeManagerImpl] Setting current version to 6.2.1 2015-09-03 22:41:15,499 localhost-startStop-1 INFO [atlassian.jira.upgrade.UpgradeManagerImpl] Setting downgrade version to 6.1.7 2015-09-03 22:41:15,516 localhost-startStop-1 INFO [jira.whatsnew.listeners.WhatsNewUpgradeFinishedListenerImpl] Enabling show-whats-new-flag for all users 2015-09-03 22:41:20,016 Modification Check:thread-1 INFO [atlassian.jira.startup.JiraStartupLogger] ___ Modifications ___________________________ Modified Files : jira-application.properties, WEB-INF/web.xml Removed Files : None 2015-09-03 22:41:25,413 localhost-startStop-1 INFO [ext.bamboo.service.PlanStatusUpdateServiceImpl] Job 'com.atlassian.jira.plugin.ext.bamboo.service.PlanStatusUpdateServiceImpl:job' scheduled to run every 60000ms 2015-09-03 22:41:26,306 localhost-startStop-1 INFO [plugins.dvcs.scheduler.DvcsScheduler] DvcsScheduler start planned at Thu Sep 03 23:15:25 UTC 2015, interval=3600000 2015-09-03 22:41:27,050 localhost-startStop-1 INFO [atlassian.jira.scheduler.JiraSchedulerLauncher] Starting the JIRA Scheduler.... 2015-09-03 22:41:27,099 localhost-startStop-1 INFO [atlassian.jira.scheduler.JiraSchedulerLauncher] JIRA Scheduler started. Sep 03, 2015 10:41:28 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 123529 ms 2015-09-03 22:41:31,304 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteDirectory] synchronisation for directory [ 10000 ] starting 2015-09-03 22:41:31,882 CrowdUsnChangedCacheRefresher:thread-2 INFO [directory.ldap.cache.UsnChangedCacheRefresher] found [ 61 ] remote groups in [ 549ms ] 2015-09-03 22:41:33,068 CrowdUsnChangedCacheRefresher:thread-1 INFO [directory.ldap.cache.UsnChangedCacheRefresher] found [ 640 ] remote users in [ 1739ms ] 2015-09-03 22:41:33,239 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] scanned and compared [ 640 ] users for delete in DB cache in [ 162ms ] 2015-09-03 22:41:33,240 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] deleting [ 46 ] users 2015-09-03 22:41:34,043 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] deleted [ 46 ] users in [ 802ms ] 2015-09-03 22:41:34,043 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] scanned for deleted users in [ 970ms ] 2015-09-03 22:41:34,047 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] scanning [ 640 ] users to add or update 2015-09-03 22:41:34,056 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DirectoryCacheImplUsingChangeOperations] scanned and compared [ 640 ] users for update in DB cache in [ 12ms ] 2015-09-03 22:41:34,057 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DirectoryCacheImplUsingChangeOperations] synchronised [ 640 ] users in [ 13ms ] 2015-09-03 22:41:34,057 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DirectoryCacheImplUsingChangeOperations] scanning [ 61 ] groups to add or update 2015-09-03 22:41:34,082 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] scanned and compared [ 61 ] groups for update in DB cache in [ 25ms ] 2015-09-03 22:41:34,082 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DirectoryCacheImplUsingChangeOperations] synchronized [ 61 ] groups in [ 25ms ] 2015-09-03 22:41:34,097 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteChangeOperations] scanned and compared [ 61 ] groups for delete in DB cache in [ 15ms ] 2015-09-03 22:41:34,538 QuartzScheduler_Worker-2 INFO [atlassian.crowd.directory.DbCachingRemoteDirectory] FULL synchronisation complete for directory [ 10000 ] in [ 3234ms ]

Suggest an answer

Log in or Sign up to answer