开发时,mysql的一些设置

  1. 设置root可以远程密码登陆
#mysql 8.0之前
update mysql.user set plugin = 'mysql_native_password', authentication_string = password('123456') ,host='%' where user = 'root' ;
#mysql 8.0 
alter user 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
FLUSH PRIVILEGES;
  1. 设置 my.conf中的
bind=0.0.0.0
  1. 设置 表名大小写不敏感(即全部转为小写)
lower_case_table_names = 1

你可能感兴趣的:(开发时,mysql的一些设置)