Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MySQL uses init-connect to add access audit function exception

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Init-connet setting Note: this parameter does not work for superusers-create a test library mysql > create database test;Query OK, 1 row affected (0.00 sec) mysql > use test Database changed-- creates an audit record table mysql > CREATE TABLE `conn_ log` (- > `conn_ id` int (11) DEFAULT NULL,-> `conn_ datetime DEFAULT NULL,-> `cur_user_ name` varchar (128C) CHARACTER SET utf8 DEFAULT NULL,-> `cur_user_ name` varchar (128C) CHARACTER SET utf8 DEFAULT NULL,-> `ip` varchar (15) CHARACTER SET utf8 DEFAULT NULL,-> KEY `conn_ time` (`conn_ time`)->) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 Query OK, 0 rows affected (0.01 sec)-set audit content mysql > set global init_connect= "set @ user=user (), @ cur_user=current_user (); insert into test.conn_log values (connection_id (), now (), @ user,@cur_user,'10.0.0.1');"->; Query OK, 0 rows affected (0.00 sec) mysql > show variables like'% init%' +- -- + | Variable_name | Value | +- -+- -+ | init_connect | set @ user=user () @ cur_user=current_user () Insert into test.conn_log values (connection_id (), now (), @ user,@cur_user,'10.0.0.1') | | init_file | init_slave | | | table_definition_cache | 1400 | +-- -+- -+ 4 rows in set (0.00 sec)-- create normal user mysql > grant select Insert on dba_test.* to 'test'@'%' identified by' test' Query OK, 0 rows affected, 1 warning (0.00 sec) mysql > flush privileges;Query OK, 0 rows affected (0.01 sec) exception [root@test] # mysql-S / data0/mysql57/mysql3307/mysqltmp/mysql3307.sock-utest-ptest Welcome to the MySQL monitor. Commands end with; or\ g.Your MySQL connection id is 117Server version: 5.7.21-logCopyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or'\ h' for help. Type'\ c'to clear the current input statement.mysql > show user (); ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 118Current database: * NONE * * ERROR 1184 (08S01): Aborted connection 118to db: 'unconnected' user:' test' host: 'localhost' (init_connect command failed) mysql > select user (); ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 119Current database: * NONE * * exception handling analysis

By viewing the erro log, it is found that the test user does not have write permission to the test.conn_log table, resulting in the failure of the sql content in init-connect.

This causes the connection to fail

Solution-weighted mysql > grant insert on test.* to 'test'@'%';Query OK, 0 rows affected (0.00 sec) mysql > flush privileges;Query OK, 0 rows affected (0.00 sec)-log in to the normal [root@test] # mysql-hip address-P3307-utest-ptestWelcome to the MySQL monitor. Commands end with; or\ g.Your MySQL connection id is 140Server version: 5.7.21-log MySQL Community Server (GPL) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or'\ h' for help. Type'\ c' to clear the current input statement.mysql > use dba_test;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with-ADatabase changedmysql > show tables +-+ | Tables_in_dba_test | +-+ | user | +-+ 1 row in set (0.00 sec) mysql > insert into user (user_id,username) values; Query OK, 1 row affected (0.00 sec) mysql >

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report