How to configure JIRA to work on a system with 2 NIC's on different networks?

Jasen Sparacino June 23, 2015

JIRA works fine until I start the other NIC that is on a different network.  JIRA tries to use eth1 instead of eth0, which it can use just fine.  How do I tell JIRA to use the correct network interface.  This is JIRA standalone 6.2.5 on CentOS 6.1

 

Thanks!

1 answer

1 accepted

1 vote
Answer accepted
crf
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 23, 2015

You should be able to modify the "Connector" in server.xml to bind to a specific address.

<Service name="Catalina">


        <Connector port="8080"
                   address="10.0.0.123"  <!-- Use desired bind address -->
                   maxThreads="150"
                   minSpareThreads="25"
                   connectionTimeout="20000"

 

Disclaimer: I haven't verified this first hand.

 

Suggest an answer

Log in or Sign up to answer