Re: connecting to seperate mySQL server through PHP



>We currently have our mySQL server on the same box as the Apache
>server.
>For security and load balancing, we're going to be moving the mySQL
>server to another box.
>We're already using a single included connection file in all of our PHP
>pages that has the server, username, password line that connects to the
>database.

For security purposes, this file should be *OUTSIDE* the document
root. If PHP is broken (say, during an upgrade if you didn't shut
down Apache, or if filesystem damage during a power failure screws
up one of the libraries), it's outside the document tree, so Apache
won't display it. If PHP is not broken, it will run it, not display
it.

The file needs to be readable by the user Apache and PHP run as,
but should not be readable by others who can log in to the box,
except admins.

I suggest the possibility of multiple logins with different privileges,
although this doesn't directly help your concern. In particular,
probably a lot of your web pages can function with read-only access
to the database.

>Aside from changing "localhost" to the IP/port number of the new
>server, what else should be done, especially in the security sense?

You need to GRANT privileges so your web server can access the database.

It would be a good idea to firewall the DB server so the whole world
can't get to the MySQL port, if only to load it down trying a futile
dictionary attack. And no, I'm not talking about MySQL permissions
here, although you set those carefully also.

>If someone were to hack and be able to get access to view files, they
>could open that file and see the username/password. Is there some way
>to encrypt it or something?

You need the real password to access the database. If an encrypted
password works to access the database, then it *IS* the real password.

>So far the only thing I can think of to help limit that file's exposure
>is to place it outside the /var/www/htdocs folder region. And of course
>make sure the mySQL account it's connecting to has only the mySQL
>permissions it needs.

It's very difficult to deal with this if you are on a shared server
with people you don't trust (your competitors who are also customers
of your host).

Gordon L. Burditt
.



Relevant Pages

  • Re: hitting the limits
    ... relatively straight forward MySql database. ... 10K visitors a month and an 80Mb database are nothing. ... heavily loaded server. ... But the connection will hang around until the garbage ...
    (comp.lang.php)
  • Re: Database connection error (re-post)
    ... MySQL is a database server, it is not a desktop database like Access, you have to work with directly ... FrontPage Resources, WebCircle, MS KB Quick Links, etc. ...
    (microsoft.public.frontpage.client)
  • Re: Confusion about database updates
    ... all connecting to the same database server. ... MySQL can easily handle many simultaneous clients. ... AlphaCluster all open multiple connections to a MySQL server running on ... Let the MySQL server do that when your client ...
    (comp.lang.java.databases)
  • Re: MySQL Insert Unicode Problem
    ... I'm trying to insert some data from an XML file into MySQL. ... The database server has to support Unicode, ...
    (comp.lang.python)
  • Counting query problem
    ... against the MySQL table that I imported from my ISP's website everything ... when I upload the PHP pages to the ISP's server ... Apache2Triad which includes Apache server, MySQL and PHP and is Windows ...
    (comp.lang.php)