Re: encrypted connection to remote database.

2008-08-22 Thread todbramble
> You will need to set the DATABASE_OPTIONS setting with a dictionary. > See these two docs: > > http://www.djangoproject.com/documentation/settings/#database-options > > http://mysql-python.sourceforge.net/MySQLdb.html#functions-and-attrib... > > -RD Thank you. That worked perfectly. For

Re: encrypted connection to remote database.

2008-08-22 Thread Rajesh Dhawan
> I just can't find how to do this. > > I set up a mysql user on the remote mysql host this way: > > GRANT ALL on somedatabase.* TO 'ssluser'@'remote_ip_address' > IDENTIFIED BY 'some_password' REQUIRE SSL; > > from the local mysql client I connect like this: > > mysql -u ssluser -p -h

encrypted connection to remote database.

2008-08-22 Thread [EMAIL PROTECTED]
I just can't find how to do this. I set up a mysql user on the remote mysql host this way: GRANT ALL on somedatabase.* TO 'ssluser'@'remote_ip_address' IDENTIFIED BY 'some_password' REQUIRE SSL; from the local mysql client I connect like this: mysql -u ssluser -p -h remote_ip_address