当前位置:网站首页>MySQL报错解决
MySQL报错解决
2022-07-06 09:34:00 【唐僧骑白马】
1、ERROR 1045 (28000): Access denied for user ‘zabbix’@‘192.168.75.129’ (using password: YES)
解决办法:
重设密码
[[email protected] ~]# mysql
MariaDB [(none)]> grant all on *.* to [email protected] identified by '123456';
MariaDB [(none)]> flush privileges;
2、ERROR 1118 (42000) at line 1284: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.
解决方法:
MariaDB [(none)]> set global innodb_strict_mode = 0;
MariaDB [(none)]> flush privileges;
边栏推荐
- Flink 解析(二):反压机制解析
- Brush questions during summer vacation, ouch ouch
- [reverse primary] Unique
- 唯有学C不负众望 TOP5 S1E8|S1E9:字符和字符串&&算术运算符
- The difference between URI and URL
- C# WinForm系列-Button简单使用
- 【逆向初级】独树一帜
- 连接局域网MySql
- Notes on how the network is connected
- Final review of information and network security (based on the key points given by the teacher)
猜你喜欢
随机推荐
8086 CPU internal structure
How does wechat prevent withdrawal come true?
Programmer orientation problem solving methodology
MySQL日期函数
Flink 解析(六):Savepoints
Set up the flutter environment pit collection
Only learning C can live up to expectations Top1 environment configuration
Install docker under windows10 (through Oracle VM VirtualBox)
Activiti目录(五)驳回、重新发起、取消流程
After idea installs the plug-in, restart the plug-in and disappear
04个人研发的产品及推广-数据推送工具
Flink源码解读(一):StreamGraph源码解读
8086 segmentation technology
Activiti目录(一)重点介绍
吴军三部曲见识(四) 大家智慧
Flink 解析(一):基础概念解析
TCP's three handshakes and four waves
Instructions for Redux
关于Selenium启动Chrome浏览器闪退问题
Wu Jun trilogy insight (IV) everyone's wisdom









