Hi, Jira's "next-gen project" mode is very efficient, but it needs some extra features like adding custom filters to get a better view of his kanban or roadmap. Currently you can make a list of values ("dropdown list") but it can't be used to filter tasks. If this list of values can be a filter applicable on the roadmap view, it will be really interesting for our company.
Better consideration.
"I would run 2 instances in parallel." - Wrong, unsuppoted, will yield weird results. Reason: there is a cache in each Jira instance, and they cannot be synchonized (changes in one app will be not reflected in the other, or will be partially reflected).
But: your container (read: Tomcat) know how to handle both http and https. It is very easy to configure it to listen on one interface on 443 and on the other (internal) interface on 80. Also, you can put a reverse proxy for the internet access. There are quite a number of configurations that can solve your problem with only one instance of Jira.
It's not just the cache - if you have separate home directories, you have separate indexes, which means a change in one Jira won't go into the index of the other. Neither Jira will be aware of writes by the other one to the database, so the caches and indexes will go out of sync. Even if you pointed the index directories to the same location, you'd instantly hit locking and concurrent write problems. The only way this works is if both Jiras are fully aware of the other, which means clustering and Jira does not do that.
Exactly as Radu says, just run a single Jira and have it listen twice. You'll have some fun with the base url, but it'll work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Radu or Nic,
could you have a look at the server.conf and let me know whether I got that right?
Thanks a lot
maba
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira can only have one "base url" - if you present it to the world over two different urls, one of them will be wrong. The base url is used for communication with other systems and displays
Email is the most obvious case - one set of users will be fine, but the ones using the "wrong" url will be receiving emails based on the base url that they cannot see.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Will the following work? Thumbs up / down?
Please note: I intend to run the Intranet part with ...mycompany.net and the external part with ...mycompany.com.
What do you mean with "fun with the base URL"?
<Service name="Catalina">
<Connector port="8080"
maxThreads="150"
minSpareThreads="25"
maxSpareThreads="75"
connectionTimeout="20000"
enableLookups="false"
maxHttpHeaderSize="8192"
protocol="HTTP/1.1"
useBodyEncodingForURI="true"
redirectPort="8443"
acceptCount="100"
disableUploadTimeout="true"
scheme="http"
proxyName="myjira.mycompany.net"
proxyPort="80"
/>
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
maxHttpHeaderSize="8192" SSLEnabled="true"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" useBodyEncodingForURI="true"
proxyName="myjira.mycompany.com"
proxyPort="443"
/>
Best regards
Maba
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So this would mean that inside server.xml I just turn on both connectors and configure my proxyName and proxyPort accordingly:
Will something like this do what I would expect? Listen on 443 / 8443 for requests on https://jira.myexample.com/ and on 80 / 8080 for requests on http://jira.myexample.net/
<Service name="Catalina">
<Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true" scheme="http" proxyName="jira.myexample.net" proxyPort=80 /> <Connector port="8443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true" SSLEnabled="true" secure="true" clientAuth="false" sslProtocol="TLS" scheme="https" proxyName="jira.myexample.com" proxyPort=443 /> .... </Service>
Any thumbs up, thumbs down? What kind of fun is the "base url"?
Thanks in advance
maba
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.