主頁 > 知識庫 > Mysql 5.7.9 shutdown 語法實例詳解

Mysql 5.7.9 shutdown 語法實例詳解

熱門標簽:寧波企業(yè)外呼系統(tǒng)收費 成都優(yōu)派外呼系統(tǒng) 聊城智能外呼系統(tǒng)運營商 地圖標注人員兼職 扎樣申請400電話 ps制作地圖標注gif 上海智能外呼系統(tǒng)代理商 沈陽電銷外呼系統(tǒng)原理是什么 電子地圖標注電話

mysql-5.7.9 終于提供shutdown 語法啦:

  之前如果想關閉一個mysql數(shù)據(jù)庫可以通過kill 命令、mysqladmin shutdown 、service mysqld stop 等這樣的方式。

  然而在mysql-5.7.9之后mysql終于提供了SQL接口的shutdown語法啦!

SQL接口下的shutdown語法:

  語法

shutdown ; -- 這個shutdown要執(zhí)行成功要有shutdown權(quán)限才行。

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
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> shutdown ; -- 通過SQL接口的方式執(zhí)行shutdown
Query OK, 0 rows affected (0.00 sec)
-- 在mysql客戶端下執(zhí)行system 來執(zhí)行l(wèi)inux命令 這里用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的結(jié)果可以看出mysql數(shù)據(jù)庫已經(jīng)關閉了(mysqld這個進程沒有了)

 如果權(quán)限不足會看下如下效果:

mysql> shutdown;
ERROR 1227 (42000): Access denied; you need (at least one of) the SHUTDOWN privilege(s) for this operation

由于shutdown是實例級的權(quán)限、所以授權(quán)語句如下:

mysql> grant shutdown on *.* to jiangle@‘localhost‘ ;
Query OK, 0 rows affected, 1 warning (0.00 sec)
-- 授予jiangle@‘localhost‘用戶shutdown權(quán)限

以上所述是小編給大家介紹的Mysql 5.7.9 shutdown 語法實例詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • Mysql數(shù)據(jù)庫存儲過程基本語法講解
  • 關于Mysql update修改多個字段and的語法問題詳析
  • 詳解MySQL alter ignore 語法
  • 詳解Mysql5.7自帶的壓力測試命令mysqlslap及使用語法
  • Mysql語法、特殊符號及正則表達式的使用詳解
  • mysql數(shù)據(jù)庫基本語法及操作大全

標簽:AXB 汕頭 宿州 三明 林芝 朔州 咸寧 內(nèi)江

巨人網(wǎng)絡通訊聲明:本文標題《Mysql 5.7.9 shutdown 語法實例詳解》,本文關鍵詞  Mysql,5.7.9,shutdown,語法,實例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《Mysql 5.7.9 shutdown 語法實例詳解》相關的同類信息!
  • 本頁收集關于Mysql 5.7.9 shutdown 語法實例詳解的相關信息資訊供網(wǎng)民參考!
  • 推薦文章