You can probably guess from the question that I'm new to this environment, so please bear with me. I have my.ini including a reference to the windows authentication plugin, as below: [mysqld] plugin-load=authentication_windows.dll I've rebooted both my desktop and the server. I have this both on my Windows 8 client install and the Windows Server 2012 server install. When I connect to the server and list plugins via the command below: select * from information_schema.PLUGINS where plugin_name like '%mysql%'; I do get that the plugin is there and installed: PLUGIN_NAME PLUGIN_VERSION PLUGIN_STATUS PLUGIN_TYPE PLUGIN_TYPE_VERSION mysql_native_password 1.0 ACTIVE AUTHENTICATION 1.0 mysql_old_password 1.0 ACTIVE AUTHENTICATION 1.0 . . but when I try to create a login (below), it tells me that the plugin is not installed. CREATE USER cust_login IDENTIFIED WITH authentication_windows AS 'domain\\MyWindowsName'; Plugin 'authentication_windows' is not loaded Is my connection to MySQL using the my.ini file? If not, how can I set that in TOAD? Thanks Andre
↧