Re: Selecting backend based on the user connecting
Yeah, with shared I didn't meant physically shared (like NFS, ...). Just replication.
Let me explain the way the authentication works in MySQL and let's see how we can fold your needs in here:
- client connects to server (no data)
- server responds with a auth-challenge (server-version, capabilities and a random challenge)
- client sends a auth-response (username, scrambled-password, capabilities)
- server accepts or denies auth
The problem is that client and server need to use the same "challenge" to scramble the password. Otherwise the login can't be successful.
This challenge/response is a security feature to make sure that no man-in-the-middle can capture the clear-text password on the network.
This is (as said before) a chicken-egg problem.
Any ideas ?
--
Jan Kneschke, MySQL Enterprise Tools
Subject
Views
Written By
Posted
3582
August 13, 2007 03:42AM
2797
August 13, 2007 04:05AM
2616
August 13, 2007 04:11AM
2524
August 13, 2007 04:27AM
2541
August 13, 2007 05:29AM
Re: Selecting backend based on the user connecting
2498
August 13, 2007 06:17AM
2689
August 20, 2007 05:47AM
2632
August 20, 2007 09:06AM
2662
August 22, 2007 07:45AM
2569
August 13, 2007 04:16AM
2565
August 13, 2007 04:25AM
2367
August 13, 2007 05:57AM
2449
August 13, 2007 06:20AM
2624
August 13, 2007 09:03AM
2374
October 11, 2007 02:31AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.