欢迎访问服务器技术网-www.fuwuqijishu.com

phpstudy切换mysql版本

phpstudy fuwuqijishu 2年前 (2022-07-18) 57次浏览 0个评论 扫描二维码

phpstudy切换mysql版本

phpstudy切换mysql版本

一、下载新版 mysql

例如 mysql5.7: https://dev.mysql.com/downloads/file/?id=467269

二、备份 phpStudy\PHPTutorial\MySQL

三、解压下载的新版 mysql,放于 phpStudy\PHPTutorial\ 中,重命名为 MySQL

四、复制一份 my-default.ini,重命名为 my.ini

五、修改my.ini配置

basedir = D:/phpStudy/PHPTutorial/MySQL
datadir = D:/phpStudy/PHPTutorial/MySQL/data
skip-grant-tables

注:根据自己的实际路径情况改,有配置的改,没有的可以自己加,加在 [mysqld] 下就行

六、在 cmd 下进入 MySQL 的 bin 目录(我的是 D:/phpStudy/PHPTutorial/MySQL/bin),执行初始化命令

mysqld --initialize

注1:如果报 TIMESTAMP with implicit DEFAULT value is deprecated. Please use –explicit_defaults_for_timestamp server option (see documentation for more details). 错误,则修改 my.ini 配置,在 [mysqld] 下添加

explicit_defaults_for_timestamp = true

注2:如果报 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release. 错误,则修改 my.ini ,在 [mysqld] 下添加(已有配置的直接修改)

sql_mode = NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER

七、安装并启动服务

mysqld -install
net start MySQL

八、修改 mysql 登录密码

mysql -uroot -p

PS:不用输密码,直接回车就行

update mysql.user set authentication_string=password('root') where user='root' and Host ='localhost';

注:'root'只是一个示例,自行修改成自己想要的密码

刷新权限

FLUSH PRIVILEGES;

九、修改 my.ini,注释掉 skip-grant-tables

# skip-grant-tables

重启 mysql

net stop MySQL
net start MySQL

更多phpstudy相关技术文章,请访问phpstudy使用教程栏目进行学习!

以上就是phpstudy切换mysql版本的详细内容,更多请关注服务器技术网其它相关文章!

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2121.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900