I installed JIRA on a linux machine and it was working fine untill the machine went down for some unknown reason. After restarting the machine, running start-jira.sh from jira installation directory(/opt/atlassian/jira/bin) is not opening the UI in any other machine's browser except for the one in linux machine where it is installed.
What could be the problem here? Looks like a permission issue. I tried calling start-jira.sh as both root user as well as 'jira' user. But the result is the same. I am not receiving any error when I call start-jira.sh either. The JIRA_HOME directory is /var/atlassian/application-data/jira. I have also tried to call start-jira.sh from this directory. But the issue stated above isn't resolved.
Which linux is it? Ubuntu/ Fedora? Check the firewall to see whether it is enabled.
Also, from the remote computer run the following command to see whether it can listen to your JIRA machine's port 8080.
# telnet xxx.xxx.xxx.xxx 8080
(Replace xxx.xxx.xxx.xxx with your JIRA machine's IP)
Also, try a ping.
Telnet to port 8080 did not work. So I disabled the firewall in linux machine and now I am able to access JIRA again. Thanks Sameera!
Commands used: #service iptables stop and #chkconfig iptables off
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Saved my day!! Thanks a lot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This link has a section on firewall which worked for me directly
https://z3nsamlearn.zendesk.com/hc/en-us/articles/218748027-Installing-JIRA-7-x-on-Centos-7
in case link goes away, the commands below
# firewall-cmd --permanent --zone=public --add-port=8080/tcp # firewall-cmd --reload
If you’re using AWS, you may also need to open this on your instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If it opens on the local machine, then it's running ok.
This is going to be a firewall issue - something else is blocking remote access to the machine. Try addressing it by IP address first, if that works, it's a DNS problem. Otherwise it's going to be a firewall, probably on the Jira server, blocking remote access.
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.
[root@ect-jira /var/atlassian/application-data/jira]# /opt/atlassian/jira/bin/start-jira.sh To run JIRA in the foreground, start the server with start-jira.sh -fg executing using dedicated user: jira ..... .... .NMMMD. ... .8MMM. $MMN,..~MMMO. .?MMM. .MMM?. OMMMMZ. .,NMMMN~ .IMMMMMM. .NMMMN. .MMMMMN, ,MMMMMM$..3MD..ZMMMMMM. =NMMMMMM,. .,MMMMMMD. .MMMMMMMM8MMMMMMM, .ONMMMMMMMMMMZ. ,NMMMMMMM8. .:,.$MMMMMMM .IMMMM..NMMMMMD. .8MMMMM: :NMMMMN. .MMMMMM. .MMMMM~. .MMMMMN .MMMMM?. Atlassian JIRA Version : 5.2 Detecting JVM PermGen support... PermGen switch is supported. Setting to 256m If you encounter issues starting or stopping JIRA, please see the Troubleshooting guide at http://confluence.atlassian.com/display/JIRA/Installation+Troubleshooting+Guide Using JIRA_HOME: /var/atlassian/application-data/jira Server startup logs are located in /opt/atlassian/jira/logs/catalina.out Using CATALINA_BASE: /opt/atlassian/jira Using CATALINA_HOME: /opt/atlassian/jira Using CATALINA_TMPDIR: /opt/atlassian/jira/temp Using JRE_HOME: /opt/atlassian/jira/jre/ Using CLASSPATH: /opt/atlassian/jira/bin/bootstrap.jar:/opt/atlassian/jira/bin/tomcat-juli.jar Using CATALINA_PID: /opt/atlassian/jira/work/catalina.pid [root@ect-jira /var/atlassian/application-data/jira]#
This is what I get when I run start-jira.sh. Yes the jira was locked initially but I have deleted the lock file from jira home directory now. But still I am not able to access it from any other machine's browser.
I also checked if port 8080 is blocked. It is not.
[root@ect-jira /var/atlassian/application-data/jira]# netstat -nlp | grep 8080 tcp 0 0 :::8080 :::* LISTEN 16926/java
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Checked /opt/atlassian/jira/logs/catalina
.out and found no errors.
******************************************************************************
JIRA 5.2 build: 812 started. You can now access JIRA through your web browser.
******************************************************************************
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.