標籤:mysql5.7基礎 查看mysql的所有使用者
鎮場文:
學儒家經世致用,行佛家普度眾生,修道家全生保真,悟易理象數通變。以科技光耀善法,成就一良心部落格。
______________________________________________________________________________________________________
Operating System:UbuntuKylin 16.04 LTS 64bit
mysql: Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using EditLine wrapper
step1:
登陸
[email protected]:~$ mysql -u root -p
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 5Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)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.
step2:
進入mysql資料庫 並 查詢所有使用者
mysql> use mysql;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changed
mysql> select host,user from user;+-----------+------------------+| host | user |+-----------+------------------+| localhost | TestUser || localhost | debian-sys-maint || localhost | myTestUser || localhost | mysql.sys || localhost | phpmyadmin || localhost | root |+-----------+------------------+6 rows in set (0.00 sec)
step3:
退出
mysql> exitBye[email protected]:~$
______________________________________________________________________________________________________
若是您覺得此博文有可以改進的地方或者內容過時了,請評論,我會仔細思考的。
註:此博文僅用於科研學習,如果侵犯到您的權益,請及時告知,我會做出相應的處理。
本文出自 “心靜如水,志剛如磐.” 部落格,請務必保留此出處http://xinjingzhigang.blog.51cto.com/12262830/1905525
mysql5.7基礎 查看mysql的所有使用者