| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/r/ |
Upload File : |
# # Bug #21235226 : THE --ENABLE-CLEARTEXT-PLUGIN IS NOT IMPLEMENTED # IN ALL CLIENT PROGRAMS # CREATE DATABASE db21235226; USE db21235226; CREATE TABLE t1(a INT); INSERT INTO t1 VALUES (1), (2); SELECT * FROM t1; a 1 2 CREATE USER uplain@localhost IDENTIFIED WITH 'cleartext_plugin_server' AS 'cleartext_test'; GRANT ALL PRIVILEGES ON *.* TO uplain@localhost; Warning: Using a password on the command line interface can be insecure. mysqldump: Got error: 2059: Authentication plugin 'mysql_clear_password' cannot be loaded: plugin not enabled when trying to connect SELECT * FROM t1; a Warning: Using a password on the command line interface can be insecure. mysqlimport: Error: 2059 Authentication plugin 'mysql_clear_password' cannot be loaded: plugin not enabled SELECT * FROM t1; a 1 2 Warning: Using a password on the command line interface can be insecure. mysqlshow: Authentication plugin 'mysql_clear_password' cannot be loaded: plugin not enabled Database: db21235226 +--------+ | Tables | +--------+ | t1 | +--------+ Warning: Using a password on the command line interface can be insecure. mysqlcheck: Got error: 2059: Authentication plugin 'mysql_clear_password' cannot be loaded: plugin not enabled when trying to connect db21235226.t1 OK DROP TABLE t1; DROP DATABASE db21235226; DROP USER uplain@localhost;