Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,698
Community Members
 
Community Events
185
Community Groups

Can a Project in New JIRA be accessed using an existing project in old JIRA?

Requirement or a Use case -

there was project in Old JIRA and as users complain that its not sufficing there need, we created same project in NEW JIRA with different configuration.

As we are working on Agile frame work, when a user selects the project in old jira can it open the project in new JIRA. so that issues can be created in new instead of old.

What are the possible options can JIRA provide in such scenario.

 

1 comment

Daniel Ebers
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 25, 2020

Hi Vanisree,

if I got you right you are dealing with two Jira instances - an old one and a new one. Your users want to use the new one right away.

When it only comes to the URL they are typing in browser a redirect on reverse proxy level is a common fix. They will be redirected to the new Jira instance even when typing in the old address.

If they need to have all the existing issues in new Jira you would have to export them from old instance to new instance - I am not sure if this was done in your case.

A redirect from within old Jira to the project in new instance could be a lot trickier. In some cases this works also using the trick on reverse proxy level but you need to catch a lot of URL that need to be redirected.

In case you could clarify your use case a bit further community members are likely able to give more tips and tricks.

Cheers,
Daniel

Example 

Case study  - I have (1A to 10A) projects in Old JIRA (ABC.com) .1 project ( 1L ) in New Jira (XYZ.com)

Now the user want to access new jira with old jira. The old jira is not retiring but would like to go live with what we have so far in new jira. 

Now the ask is, I will log in ABC.com and can access 1A to 10A projects but instead of 9A project in old jira that needs to open the 1L project in new jira. what ever is created in 1L has to be created in new jira only, we dont want large audience to switch around the urls but using the old jira (ABC.com) and instead of 9A old project in old jira has to be now 1L (new project) in new jira (XYZ). 

 

Hope the above scenario gives you more detail view of the ask

Daniel Ebers
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 27, 2020

Yes, this is a perfect use case for a redirect on reverse proxy level.
Here an example for the popular Apache webserver.

RewriteRule "^/browse/OUZEL(.*)$" "https://mynewjira.example.org/browse/MAGPIE$1" [R,L]

Comment

Log in or Sign up to comment