CentOS 7 是一款非常流行的操作系統(tǒng),許多網(wǎng)站和應(yīng)用程序都使用它作為服務(wù)器的操作系統(tǒng)。而 MySQL 數(shù)據(jù)庫(kù)則是用于存儲(chǔ)大量數(shù)據(jù)的流行選擇。現(xiàn)在,我們將介紹如何查看 CentOS 7 上 MySQL 數(shù)據(jù)庫(kù)的賬號(hào)。
[root@localhost ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.7.21 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, 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>SELECT User FROM mysql.user;
+------------------+
| User |
+------------------+
| root |
| mysql.session |
| mysql.sys |
| debian-sys-maint |
+------------------+
4 rows in set (0.00 sec)
mysql>
在以上例子中,我們使用了 mysql 命令。接著,輸入用戶的用戶名和密碼。在進(jìn)入 MySQL 界面后,我們使用了一個(gè)標(biāo)準(zhǔn)的 SQL 查詢語(yǔ)句:SELECT User FROM mysql.user。這個(gè)查詢語(yǔ)句將會(huì)列出 MySQL 數(shù)據(jù)庫(kù)的所有賬號(hào)。
如果您的數(shù)據(jù)庫(kù)需要更多的安全保護(hù),建議添加密碼盡可能復(fù)雜,不定期修改密碼,刪除未使用的賬號(hào)等措施。這些措施可以非常有效地保護(hù)您的數(shù)據(jù)安全。