Mysql5.7.9shutdown语法实例详解安装包编辑器
mysql-5.7.9 终于提供shutdown 语法啦:
之前如果想关闭⼀个mysql数据库可以通过kill 命令、mysqladmin shutdown 、service mysqld stop 等这样的⽅式。
然⽽在mysql-5.7.9之后mysql终于提供了SQL接⼝的shutdown语法啦!
SQL接⼝下的shutdown语法:
语法php输出json数组
shutdown ; -- 这个shutdown要执⾏成功要有shutdown权限才⾏。
shutdown的⼀个例⼦:
[root@workstudio ansible]# mysql -uroot -h127.0.0.1 -- 登录进mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.18-enterprise-commercial-advanced-log MySQL Enterprise Server - Advanced Edition (Commercial)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
ignore invite翻译affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql面试题详解mysql> shutdown ; -- 通过SQL接⼝的⽅式执⾏shutdown
Query OK, 0 rows affected (0.00 sec)
-- 在mysql客户端下执⾏system 来执⾏linux命令这⾥⽤ps来查看linux上有没有mysqld 这个服务程序了
mysql> system ps -ef | grep mysql
root 5709 3403 0 13:32 pts/0 00:00:00 mysql -uroot -h127.0.0.1
root 5720 5709 0 13:33 pts/0 00:00:00 sh -c ps -ef | grep mysql
root 5722 5720 0 13:33 pts/0 00:00:00 grep mysql
-- 由ps的结果可以看出mysql数据库已经关闭了(mysqld这个进程没有了)
如果权限不⾜会看下如下效果:
angular uimysql> shutdown;
tarzan xERROR 1227 (42000): Access denied; you need (at least one of) the SHUTDOWN privilege(s) for this operation
由于shutdown是实例级的权限、所以授权语句如下:
mysql> grant shutdown on *.* to jiangle@‘localhost‘ ;
Query OK, 0 rows affected, 1 warning (0.00 sec)
-- 授予jiangle@‘localhost‘⽤户shutdown权限
以上所述是⼩编给⼤家介绍的Mysql 5.7.9 shutdown 语法实例详解,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论