Re: Database Security

2008-09-14 Thread Mario
All, Thank you very much for all the insightfull techniques. I will test the proposed functionalities in a lab environment prior to deployment. V/r, -Mario On Sep 13, 5:32 pm, Sander Steffann <[EMAIL PROTECTED]> wrote: > Hi Mario, > > > DATABASE_HOST ="http://192.168.1.128"; > > DATABASE_HOST

Re: Database Security

2008-09-13 Thread Sander Steffann
Hi Mario, > DATABASE_HOST ="http://192.168.1.128"; DATABASE_HOST must contain a hostname or IP address, not an URL. You should remove the "http://"; part and check that the IP address is correct and reachable. - Sander --~--~-~--~~~---~--~~ You received thi

Re: Database Security

2008-09-13 Thread Steve Holden
Mario wrote: [some stuff which I have again moved to the bottom where it belongs] > On Sep 13, 12:46 pm, Steve Holden <[EMAIL PROTECTED]> wrote: >> Ross wrote: >> [some stuff you can now find after the question] >>> On Sep 13, 9:37 am, Mario <[EMAIL PROTECTED]> wrote: Hello, I would like

Re: Database Security

2008-09-13 Thread Mario
Thank you for responding so quickly, but the question hasn't been answered. Assuming there are firewalls layered between the DMZ and the private network and the routing table has been setup correctly; what do I need to do to forward the http request to my remote database. Do I modify my settings.

Re: Database Security

2008-09-13 Thread Steve Holden
Ross wrote: [some stuff you can now find after the question] > On Sep 13, 9:37 am, Mario <[EMAIL PROTECTED]> wrote: >> Hello, >> >> I would like to move off the existing database server off Django. >> Currently, my settings.py file include the following configuration: >> >> DATABASE_ENGINE = 'mysq

Re: Database Security

2008-09-13 Thread Ross
http://docs.djangoproject.com/en/dev/ref/databases/#connecting-to-the-database Putting your database in the DMZ is probably a very bad idea... You don't want to give the entire internet access to your database. The standard Django setup expects your database to be accessible on the same local net

Database Security

2008-09-13 Thread Mario
Hello, I would like to move off the existing database server off Django. Currently, my settings.py file include the following configuration: DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME = 'golf_prod'