MySQL是一種廣泛使用的關系型數據庫管理系統,能夠管理海量數據。在使用MySQL時,我們經常需要查看在線連接數。下面,我們將介紹如何使用MySQL命令行工具查看在線連接數。
$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.7.31-0ubuntu0.18.04.1 (Ubuntu) Copyright (c) 2000, 2020, Oracle and/or its affiliates. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>show processlist \G; *************************** 1. row *************************** Id: 1 User: root Host: localhost:38146 db: NULL Command: Query Time: 0 State: starting Info: show processlist *************************** 2. row *************************** Id: 2 User: root Host: localhost:38150 db: NULL Command: Query Time: 0 State: starting Info: show processlist 2 rows in set (0.00 sec)
在上述代碼中,我們使用了MySQL命令行工具,連接至MySQL服務器,并使用show processlist命令查看當前MySQL連接的進程列表。在這個列表中,我們可以看到當前MySQL連接的用戶、主機、數據庫、命令、時間和狀態信息。最后,我們可以看到在線連接數為2。
下一篇css上下浮動文字