How to avoid to log work in Jira Epics

Disable “Log work” on Epics in Jira is possible and it’s very easy, here the instructions: Create a Workflow only for the Epic In all statuses/steps of the workflow add this property: jira.permission.work.denied  Assign the Workflow to the Workflow Scheme of the target project and assign to the issue type Epic ( Remember to publish…

Read More

How to modify “Original Estimate” in JIRA after log work in the Issue

To make editable the field “Original Estimate” after log work in the Issue, you must change the “Legacy Mode” in the “Time Tracking” configuration. About ‘Legacy Mode’ If Legacy Mode is disabled, your users will be able to change the Original Estimate value irrespective of any work being logged on an issue. Legacy Mode is disabled by default…

Read More

Apache Tomcat Tricks

Cloud Servers Virtual Machines Native Installers Configuration file(s) /opt/bitnami/apache-tomcat/conf/server.xml /opt/bitnami/apache-tomcat/conf/server.xml install_dir/apache-tomcat/conf/server.xml Log file(s) /opt/bitnami/apache-tomcat/logs/* /opt/bitnami/apache-tomcat/logs/* install_dir/apache-tomcat/logs/* Default port 8080, 8443 (SSL) 8080, 8443 (SSL) 8080, 8443 (SSL) AJP port 8009 8009 8009 System user account tomcat tomcat tomcat Service control sudo /opt/bitnami/ctlscript.sh start|stop|restart tomcat sudo /opt/bitnami/ctlscript.sh start|stop|restart tomcat install_dir/ctlscript.sh start|stop|restart tomcat How to configure the…

Read More

How to create a new Service with Groovy ScriptRunner

Go to JIRA > System > Advanced > Services Name: “HelloService” for example Class (always):  com.onresolve.jira.groovy.GroovyService Delay (n): in minutes input-file: {JIRA_HOME}/scripts/example/HelloService.groovy Then copy the script content to this path  {JIRA_HOME}/scripts/example/HelloService.groovy Then every n minutes you can see in the “atlassian-jira.log” the traces: 2015-05-22 13:37:13,152 atlassian-scheduler-quartz1.clustered_Worker-1 INFO ServiceRunner HelloService [onresolve.jira.groovy.GroovyService] groovyService.run 2015-05-22 13:37:13,157 atlassian-scheduler-quartz1.clustered_Worker-1 DEBUG ServiceRunner…

Read More