MySQL是一種關(guān)系型數(shù)據(jù)庫管理系統(tǒng),以下是MySQL 5.6版本如何登陸。
第一步:啟動MySQL服務(wù)器
sudo service mysql start
第二步:使用mysql
命令登錄MySQL
mysql -u [用戶名] -p
如果您的MySQL服務(wù)器的用戶名是默認(rèn)的root
,那么您可以使用以下命令登錄:
mysql -u root -p
第三步:輸入密碼
成功輸入密碼后,您將看到以下屏幕:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.6.50-83.0-log Percona Server (GPL), Release 83.0, Revision 308da7e Copyright (c) 2009-2021 Percona LLC and/or its affiliates. All rights reserved. Percona Server is an enhanced drop-in replacement for MySQL. The enhancements include performance, scalability, and instrumentation features. Percona Server software is distributed under the GPL v2 license.
第四步:退出MySQL
您可以使用以下命令退出MySQL:
exit;
通過以上步驟,您已經(jīng)成功地登錄到MySQL服務(wù)器!