在Linux系统中,要进入MySQL数据库,首先需要确保已经安装了MySQL服务器和客户端
-
打开终端(Terminal)。
-
输入以下命令以启动MySQL客户端并连接到MySQL服务器:
mysql -u 用户名 -p
其中,用户名
是你的MySQL用户名,例如root
。-p
选项表示需要输入密码。
-
按Enter键后,系统会提示你输入密码。输入相应的密码后,按Enter键。
-
如果连接成功,你将看到类似于以下的提示信息:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 12345 Server version: 8.0.26 MySQL Community Server - GPL Copyright (c) 2000, 2021, Oracle and/or its affiliates. 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>
现在你已经成功进入了MySQL数据库,可以开始执行SQL命令了。要退出MySQL客户端,可以输入exit
或quit
命令。