1 登陆
mysql -uroot -p -P3306 -h127.0.0.1

-u 后跟用户名
-p 后面跟密码,如果现在不写,后面会提示
—P后跟端口号
-h后跟服务器地址

2 退出

mysql> exit;
mysql> quit;
mysql> \q;