Linux服务器系统下如何进入MySQL命令行,码笔记分享进入MySQL命令行的方法:
Linux下进入MySQL命令行的方法
Linux系统下进入MySQL命令行主要有两种情况,即连接本机MySQL和连接远程主机上的MySQL
一:连接本机MySQL命令行
mysql -uroot -p
,回车后,输入密码即可。注意:
-uroot是指MySQL上的用户名root,而不是Linux的用户名root,如果想要登录MySQL上的用户mabiji,那就执行命令
mysql -umabiji -p
实例:
[root@mabiji ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 33 Server version: 5.5.57-log Source distribution Copyright (c) 2000, 2017, 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>
退出MySQL命令行(mysql>)执行命令:exit
即可。
二:连接远程主机MySQL命令行
mysql -h远程主机地址 -uroot -p
,回车后,输入密码即可。2024年云服务器租用优惠价格,11月最新:
发表评论