一、当前日期、当前用户、当前数据库版本
mysql> select curdate(),version(),database(),user(); +------------+------------+------------+----------------+ | curdate() | version() | database() | user() | +------------+------------+------------+----------------+ | 2017-07-25 | 5.7.16-log | NULL | root@localhost | +------------+------------+------------+----------------+ 1 row in set (0.01 sec)
二、创建用户并指定资源限制
-- 创建用户并指定最大连接数为3 (MySQL 5.7.6 和 更高版本有效) create user [email protected]‘%‘ identified by ‘one‘ with max_user_connections 3;
三、锁定MySQL账户
mysql> alter user [email protected]‘%‘ account lock; Query OK, 0 rows affected (0.09 sec)
时间: 2024-11-03 21:53:46