Jackie
Jackie

Reputation: 23527

jira.home must be an absolute path. on Windows

  1. I create a generic war using the JIRA provided script
  2. I deploy that war to a container
  3. I go on the server and edit the .properties to say

    jira.home=c:\tmp\jira

  4. When I go to localhost:port/jira I get the following...

jira.home must be an absolute path. See Setting your JIRA Home Directory for instructions on setting jira.home

I look at the instructions but I look to be doing everything right. Any ideas?

Upvotes: 0

Views: 387

Answers (1)

mdoar
mdoar

Reputation: 6881

https://confluence.atlassian.com/display/JIRA/Setting+your+JIRA+Home+Directory

I believe the path in the properties file has to have the \ escaped as well, so:

jira.home=c:\\tmp\\jira

Upvotes: 1

Related Questions