不想每次连接mysql数据库的时候都输入密码,可以通过这种方式提前配置好,直接命令行连接。
新增连接配置
mysql_config_editor set --login-path=nbachina --host=127.0.0.1 --port=3309 --user=username --password
连接数据库
mysql --login-path=nbachina
查看所有连接配置
mysql_config_editor print --all
不想每次连接mysql数据库的时候都输入密码,可以通过这种方式提前配置好,直接命令行连接。
mysql_config_editor set --login-path=nbachina --host=127.0.0.1 --port=3309 --user=username --password
mysql --login-path=nbachina
mysql_config_editor print --all