I have use base url as http://localhost:8080/UnosysJira while set up JIRA.
While doing MSQL set up I have used has Sever name localhost.
Please guide me As i am not able to access this URL also, if I want access JIRA URL across my network, what would be the steps I am missing or needs to do.
I believe that replacing the "localhost" with your machine's IP address would open up the access of the JIRA instance across the entire network. Hence, your base url should be http://YOUR_MACHINE_IP:8080/UnosysJira
To check for your machine's IP address would be dependant on your OS:
Ethernet adapter Local Area Connection: Connection-specific DNS Suffix . : xxx.com Description . . . . . . . . . . . : Broadcom NetLink (TM) Gigabit Ethernet Physical Address. . . . . . . . . : 00-25-64-BA-40-31 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Link-local IPv6 Address . . . . . : fe80::f082:9dfe:9af3:bd09%11(Preferred) IPv4 Address. . . . . . . . . . . : 192.168.70.17(Preferred) Subnet Mask . . . . . . . . . . . : 255.255.255.0 Lease Obtained. . . . . . . . . . : Thursday, July 04, 2013 9:36:56 AM Lease Expires . . . . . . . . . . : Thursday, July 04, 2013 5:55:44 PM Default Gateway . . . . . . . . . : 192.168.70.5 DHCP Server . . . . . . . . . . . : 192.168.70.2 DHCPv6 IAID . . . . . . . . . . . : 234890596 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-34-B9-F4-00-25-64-BA-40-31 DNS Servers . . . . . . . . . . . : 192.168.70.2 Primary WINS Server . . . . . . . : 192.168.70.1 NetBIOS over Tcpip. . . . . . . . : Enabled
# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:2D:32:3E:39:3B inet addr:192.168.2.2 Bcast:192.168.2.255 Mask:255.255.255.0 inet6 addr: fe80::21d:92ff:fede:499b/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:977839669 errors:0 dropped:1990 overruns:0 frame:0 TX packets:1116825094 errors:8 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:2694625909 (2.5 GiB) TX bytes:4106931617 (3.8 GiB) Interrupt:185 Base address:0xdc00
Found the IP, use it to replace "localhost" in JIRA's General Configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have replaced Localhost with IP address 'http://192.168.0.122:8080/login.jsp' I have changed the Base URL as well. But still I am not able to access link from other PC.
When i have tried to ping the 192.168.0.122 i am able successfully ping that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From what I noticed earlier, you initially have a base URL of http://localhost:8080/UnosysJira; and now you updated it to http://192.168.0.122:8080/login.jsp. Am I right thus far?
If this is the case, you are almost there. First off, check the below section in your $JIRA_INSTALL/conf/server.xml:
<Context path="/jira" docBase="${catalina.home}/atlassian-jira" reloadable="false" useHttpOnly="true">
What is the value of the Context path section? Is it "/UnosysJira"? Or is it just ""? Since you would like to use http://localhost:8080/UnosysJira as the base URL, change the section above to the following:
<Context path="/UnosysJira" docBase="${catalina.home}/atlassian-jira" reloadable="false" useHttpOnly="true">
After you've done this, restart JIRA.
Once JIRA has started up, go to http://localhost:8080/UnosysJira. You should be able to access this. After this, update your base URL to be http://192.168.0.122:8080/UnosysJira.
Let us know how this goes. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@prajakta,
@Justin is absolutely right and you should follow the installation guide carefully again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Justin and Dipti,
The problem has been solved. The problem is with the Firewall. I have turnoff the firewall and it works successfully.
Thanks
Prajakta
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Cool! Glad that the suggestions worked for you, mate! Let's keep this question clean with accepted answers so that future users can refer to this for their questions! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
great work :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, that's strange. Can you check whether your firewall is blocking incoming connections to your system? If it is, might be the root cause of your problem.
Also, if you can't telnet, then it is the firewall issue: telnet 192.168.0.122 8080
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One last thing: if you're on Windows, make sure that the hosts file (inside %systemroot%\system32\drivers\etc\) has not been tampered with. This may cause issues as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Justin,
Thanks Justin.
'http://192.168.0.122:8080/Unosysjira' is working fine with suggested changes. This URL is now accessible on the same machine where I have installed JIRA and MYSQL. But still I am not able to access this URL across the network. What changes I have to make to run this URL accross the Network.
Thanks
Prajakta
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have replaced Localhost with IP address 'http://192.168.0.122:8080/login.jsp' I have changed the Base URL as well. But still I am not able to access link from other PC.
When i have tried to ping the 192.168.0.122 i am able successfully ping that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Prajakta,
If jira and mysql are in same machine , then using localhost is not a problem.
But if both are in different machine , then you have to provide machine IP or machine name.
For accessing over the network , your setup machine should be available in the network.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA and MySQL are on same machine by i need to access over network
I will try your suggestion. and let you know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have replaced Localhost with IP address 'http://192.168.0.122:8080/login.jsp' I have changed the Base URL as well. But still I am not able to access link from other PC.
When i have tried to ping the 192.168.0.122 i am able successfully ping that.
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.