Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 88403
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:33:16+00:00 2026-05-10T22:33:16+00:00

I’ve got two Django projects on the same server. The first launched several months

  • 0

I’ve got two Django projects on the same server. The first launched several months ago, and has since collected hundreds of user accounts. The second project is launching in a few days, and we’d like the second project to allow users of the first app to authenticate using the same credentials.

At first, I was going to simply dump the user table from the first project into the second project, but this would not allow for a synchronous solution (user creates account on project B, does not then have access to project A).

Does Django have some way of natively switching database names (since they’re on the same server) for user authentication, and then back to the original database when finished with authentication?

If not, what do you think would be the best solution for my problem? Also – we’re using MySQL.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:33:17+00:00Added an answer on May 10, 2026 at 10:33 pm

    If you wait awhile, eventually Django will get multiple database support.

    But as of right now, I think the best solution to your problem would be to synchronize the two database’s user tables after changes to either are made. You can use the signals support to handle this:

    from django.db import models  def user_post_save(sender, instance, **kwargs):     ... run script to synchronize tables ... models.signals.post_save.connect(user_post_save, sender=User) 

    You won’t be able to use the ORM… but dumping the source table, then dropping the destination and importing into it would be relatively painless. This could definitely cause timing problems, but transactions would mostly solve that. If the two sites stepping on each other is a concern, I might look into setting up a write lock on the User table during the update, and set up some kind of a spin-wait cycle on the User model’s save() method (or the pre_save signal) to check for a lock before completing the save. This would guarantee that the post_save signal won’t get sent during a synchronization.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 182k
  • Answers 182k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Bolding individual words involves actually creating more inline elements, so… May 12, 2026 at 4:21 pm
  • Editorial Team
    Editorial Team added an answer Reading that link pointed me to this page¹, which under… May 12, 2026 at 4:21 pm
  • Editorial Team
    Editorial Team added an answer –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– performancetests.Strings (1 iterations) Player version: MAC 10,0,32,18 (debug) ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––… May 12, 2026 at 4:21 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS
I am currently running into a problem where an element is coming back from

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.