I have a dedicated hosting account that is managed using Plesk (i am not very comfortable with Linux command line - learning). Plesk is fine as its easy to use for managing different web spaces.
thanks a lot!
Yes, JIRA can be installed on Plesk server without any issues.
There is port clash only with Tomcat, so if you have it installed JIRA installer suggest you to choose another port.
# wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-7.2.4-x64.bin
# chmod +x atlassian-jira-software-7.2.4-x64.bin
# ./atlassian-jira-software-7.2.4-x64.bin
It's better to use MySQL database if you haven't experience with PostgreSQL.
JIRA installer always silently fallback to built in H2 file database in case of issue with provided DB settings
you have to create domain, database and mail user in plesk
You have to enable proxy_http
in Tools&Settings
> Apache Web Server
and create file /httpdocs/.htaccess
in j.domain.com
domain to redirect requests to JIRA:
RewriteEngine on
RewriteRule ^(.*) http://127.0.0.1:8080/$1 [P,L]
Troubleshooting: