Reputation: 23527
I go on the server and edit the .properties to say
jira.home=c:\tmp\jira
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
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