Database security / scaling question
Posted
by orokusaki
on Stack Overflow
See other posts from Stack Overflow
or by orokusaki
Published on 2010-06-14T22:31:52Z
Indexed on
2010/06/14
22:52 UTC
Read the original article
Hit count: 421
Typically I use a database such as MySQL or PostGreSQL on the same machine as the application using it, which makes access easy and secure. I'm just now building the first site that will have a separate physical database server (later this year it will). I'm wondering 3 things:
- (security) What things should I look into for starters pertaining to security of accessing a separate machine's database?
- (scalability) Are their scalability issues that I should think about pertaining to this (technology agnostic)?
- (more
ServerFault
ish but related) If starting the DB out on the same physical server (using a separate VMWare VM) and later moving to a different physical server, are there implicit problems that I'll have to deal with? Isn't another VM still accessed vialocalhost
?
If these questions are completely ludicrous, I apologize to you DB experts.
© Stack Overflow or respective owner