summaryrefslogtreecommitdiff
path: root/mysql-test/main/failed_auth_unixsocket.result
blob: 3b2cff7e845d1fc32194e89255ff874c8ab47bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
update mysql.user set plugin='unix_socket';
flush privileges;
Warnings:
Warning	1524	Plugin 'unix_socket' is not loaded
Warning	1524	Plugin 'unix_socket' is not loaded
Warning	1524	Plugin 'unix_socket' is not loaded
Warning	1524	Plugin 'unix_socket' is not loaded
connect(localhost,USER,,test,MASTER_PORT,MASTER_SOCKET);
ERROR 28000: Access denied for user 'USER'@'localhost' (using password: NO)
ERROR 28000: Access denied for user 'USER'@'localhost' (using password: NO)
install plugin unix_socket soname 'auth_socket.so';
flush privileges;
connect(localhost,USER,,test,MASTER_PORT,MASTER_SOCKET);
ERROR 28000: Access denied for user 'USER'@'localhost'
ERROR 28000: Access denied for user 'USER'@'localhost'
update mysql.user set plugin='';
flush privileges;
uninstall plugin unix_socket;