参考博文:https://www.cnblogs.com/mxh1099/p/5265656.html

单实例登陆:

本地登陆: mysql -u root -p   //root是用户名,输入这条命令按回车键后系统会提示你输入密码 -p参数

远程登陆(制定ip和端口):mysql -h ip -u root -p -P 3306例如:mysql -h 127.0.0.1 -u root -p -P 3306

新增用户:

mysql> 格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"

mysql> grant select,insert,update,delete on *.* to user1@localhost Identified by "password1";

如果希望该用户能够在任何机器上登陆mysql,则将localhost改为"%"。

mysql> grant select,insert,update,delete on *.* to user1@% Identified by "password1";

如果你不想user1有密码,可以再打一个命令将密码去掉。

grant select,insert,update,delete on mydb.* to user1@localhost identified by "";

多实例登陆:

本地登陆:mysql -uroot -p123456 -S /usr/local/mysql_3307/mysql.sock

远程登陆:同单实例登陆

03-07 19:48