Hi All
I want to access jira using startard port 80. So I amended the server.xml from port 8080 to 80 and restartd jira (as a service).
But after the change I cannot access jira.
What are the changes that i need to make to fix this?
It seems that apache is not listening to this port. Can anyone help please?
Note:If I use any other port say 8091 , 8092 etc it works. but not 80
Rahul
If you're using a linux OS then you need to run JIRA as a root user. Only root is allowed to run applications on ports lower than 1024.
If you're running on windows, you could have another service running on that port already.
Eithery way, the change you're making is most likely correct, but an environment variable could ne holding you up.
sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080.
This will just fit your bill, redirect everything from 8080 to 80 and you can access it over http without any issues. Ex : (www.jira.mydomain.com) as compared to default (www.jira.mydomain.com:8080)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this really save me a lot.. Brilliant !!!. Simple solution and it works !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In any case take a look at this documentation, is always better to read the official information, at least to understand:
https://confluence.atlassian.com/display/JIRA/Changing+JIRA's+TCP+Ports
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@C. FaysalCan you elaborate on what approach you would take to run JIRA without a port number?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, he keeps the "more smarter way" to himself, because you wouldn't understand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I simply re-installed jira and amended the xml to accept port 80 and it worked. Not sure what was wrong with my previous installation.
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.