Hello,

mysql server 3
django 1.6.11
workstation: ubuntu wily (15.10) mysql client 5.6.27


I need to make Django recognize secure-auth=false or skip-secure-auth=true
but so far I couldn't


I tried in project/settings.py

        'OPTIONS': {
            'skip-secure-auth': 'true',
        },

        'OPTIONS': {
            'secure-auth': 'false',
        },

and combinations of '-' and '_', and False, FALSE, false (same for true).


Also tried:

        'OPTIONS': {
            'read_default_file': os.path.join(BASE_DIR, 'conf/my.cnf'),
        }

And in conf/my.cnf:

[client] (and mysql)

skip-secure-auth (and its variations)


None works.

Then I tried skip-secure-auth in /etc/mysql/my.cnf [mysql] and this works
in the cli, but Django seems to ignore this file.


Does anybody have other ideas?

Thanks!
Norberto

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADut3oAGW56GgGrigM5L7nLhTHdNjWOrVBzRd0GHVTMokrk6dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to