时间:2021-07-01 10:21:17 帮助过:16人阅读
# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [client] default-character-set = utf8mb4 [mysql] default-character-set = utf8mb4 [mysqld] character-set-client-handshake = FALSE character-set-server = utf8mb4 collation-server = utf8mb4_bin init_connect=‘SET NAMES utf8mb4‘ # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. innodb_buffer_pool_size = 128M # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir = D:\MySQL datadir = D:\MySQL\data port = 3306 # server_id = ..... # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. join_buffer_size = 128M sort_buffer_size = 16M read_rnd_buffer_size = 16M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
其中basedir 和 datadir 根据实际MySql安装的位置进行修改。
删除之前生成的data文件,如果有重要的数据表,请先备份好。
回到cmd,重新生成data文件。运行:
D:\MySql\bin>mysqld --initialize-insecure --user=mysql
该命令需要执行大概一分钟左右,完成后会在MySql程序文件夹下重新生成名称为data的文件夹:
安装MySql服务,同时设置绑定my.ini配置文件。命令:
D:\MySql\bin>mysqld --install "MySql80" --defaults-file="d:/mysql/my.ini"
“MySql80”是服务名称,80表示8.0版本,当然,也可以自己取别的名字。
”..\my.ini“是新建的配置文件的位置,也可以写成绝对路径”D:\MySql\my.ini“。
如果提示安装成功,这时打开电脑的”服务“窗口,可以找到新添加的MySql80服务:
这里有两种启动服务的方式:1)服务窗口启动;2)cmd启动
直接右击服务项,选择启动:
命令:
D:\MySql\bin>net start mysql80
等待20秒左右,如果启动成功,是这样的:
如果不成功:
这时可能是my.ini配置文件中的某些配置有问题。你可以修改ini文件内容,然后从头按步骤再试一遍。
删除了data文件和服务之后,之前的密码就失效了,所以需要重新设置密码。
命令:
D:\MySql\bin>mysql -u root -p
这时密码为空,不需要填写,直接回车:
如果这里没有登陆成功,请移步下一章”重置MySql密码“~
(敲黑板)这里有个需要注意的地方,在8.0之后的版本,修改root用户密码的命令是:
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘你的密码‘;
之前的版本是:
update mysql.user set authentication_string=password("你的密码") where user="root";
我这里安装的是8.0.11,所以是第一个:
命令:
mysql> exit
这里的命令和之前是一样的,就不写了,密码记得要填刚才设置的:
现在已经成功绑定了my.ini配置文件了,如果需要自定义配置,可以打开文件进行相应的配置设置,修改后重启服务即可。
如果修改后,重启服务报错,如下图:
有一种可能:你修改的配置与服务初始化时的配置有冲突,这时只能从头开始,在初始化的时候绑定my.ini文件 。
下一章要讲的的“设置MySql大小写敏感”就是~
当用命令导入csv文件时提示错误[Err] 1290 - The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
标签:行修改 mount ati ups 启动 系统安装 msi dir leading