Game login server

Posted by Tar on Server Fault See other posts from Server Fault or by Tar
Published on 2012-09-25T01:31:02Z Indexed on 2012/09/25 3:39 UTC
Read the original article Hit count: 419

Filed under:

I have a setup like this: A website, with a database. This database houses accounts and all details. Password hashes/salts/join dates/etc. What I want to do is to be able to use this same database for our game database. The game will be on servers in the United States while the web server and web server database is in the Netherlands. I know there is a big problem with using remote SQL and we really don't want to do that as operation of the website is just as vital as operation of the game server.

We had one solution that involved sending account details to another database hosted on the same server that the gameserver is hosted on, but that was incredibly unreliable because if the website was down, no new people could register to play the game.

The solution that we want is to have a log in server that is used to check credentials for everything. Is this possible/viable and could anyone point in the right direction?

So, in summation:

2 game servers 1 web servers 1 central database used for authorization. The game accounts and website accounts need to be one in the same.

© Server Fault or respective owner

Related posts about mysql