Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4149044
  • 博文数量: 447
  • 博客积分: 1241
  • 博客等级: 中尉
  • 技术积分: 5786
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-27 06:48
个人简介

读好书,交益友

文章分类

全部博文(447)

文章存档

2023年(6)

2022年(29)

2021年(49)

2020年(16)

2019年(15)

2018年(23)

2017年(67)

2016年(42)

2015年(51)

2014年(57)

2013年(52)

2012年(35)

2011年(5)

发布时间:2022-07-25 16:48:36

Step 2: set mysql env optionssystemctl set-environment MYSQLD_OPTS=--skip-grant-tablesStep 4: Update Password using querymysql> UPDATE mysql.user SET authentication_string = PASSWORD ('ENTER_NEW_PASSWORD') WHERE User = 'root' AND Host = 'localhost.........【阅读全文】

阅读(782) | 评论(0) | 转发(0)

发布时间:2022-04-26 17:17:53

1 安装2 设置启动systemctl start mariadb.service......【阅读全文】

阅读(1229) | 评论(0) | 转发(0)

发布时间:2022-04-25 11:31:24

打开/etc/my.cnf.d目录下mariadb-server.cnf文件[mysqld]  innodb_strict_mode             = 0......【阅读全文】

阅读(814) | 评论(0) | 转发(0)

发布时间:2022-04-24 16:25:58

centos默认安装的mariadb没有密码,需要重启设置一下mysql -h localhost -u root -p登录输入ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';FLUSH PRIVILEGES;、FLUSH PRIVILEGES;......【阅读全文】

阅读(1848) | 评论(0) | 转发(0)

发布时间:2022-04-21 11:14:29

mysql 8.0使用了新的密码加密方式,不再使用mysql_native_password。flush privileges;flush privileges;% 就是不限制登录地址,同时主要修改配置文件中bind-address然后设置ALTER USER root IDENTIFIED WITH caching_sha2_password BY '123456';最后运行......【阅读全文】

阅读(1950) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册