maridb Error 'Operation DROP USER failed for

数据库版本:mariadb   10.0.12

主库删除多余的用户名,因从库没有此信息造成主从故障!

报错信息如下:
Error ‘Operation DROP USER failed for ‘username‘@‘192.16.%‘

多源复制的主从报错跳过:

根据mysql操作方式sql_slave_skip_counter = 1 ,执行不报错,但是sql_slave_skip_counter = 1 不会生效

多源主从跳错的操作如下:

SET @@default_master_connection = ‘master_01‘;
SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
STOP SLAVE ‘master_01‘;
START SLAVE ‘master_01‘;

maridb Error 'Operation DROP USER failed for

时间: 2024-10-05 20:51:26

maridb Error 'Operation DROP USER failed for的相关文章

Mysql_Faq: ERROR 1396 (HY000): Operation CREATE USER failed for ‘username’@’hostname’

suzf.net  纯手工打造 在对mysql 权限进行管理的时候出现如下错误:ERROR 1396 (HY000): Operation CREATE USER failed for 'username'@'hostname' But 这个用户只真是存在的 .回想一个之前的操作 : 先是用 grant 语句创建了一个用户,然后权限有变 用 update 更新了一下 mysql.user 的数据 .结果就出现了上面的错误 .解决办法 :删除无效/冲突的用户授权 ,重新根据需求授权.这就是说 My

mysql重建某个用户账号(ERROR 1396 (HY000): Operation CREATE USER failed)

说明:在MariaDB中删除了用户molewan后,业务又有需求重新建立一个名为molewan的用户 1.查看数据库,发现已经没有molewan用户了 MariaDB [mysql]> select user,host from mysql.user; +----------+------------+ | user     | host       | +----------+------------+ | molewan1 | 10.10.10.% | | admin    | localh

解决hiveserver2报错:java.io.IOException: Job status not available - Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.mr.MapRedTask

用户使用的sql: select count( distinct patient_id ) from argus.table_aa000612_641cd8ce_ceff_4ea0_9b27_0a3a743f0fe3; 下面做不同的测试: 1.beeline -u jdbc:hive2://0.0.0.0:10000 -e "select count( distinct patient_id ) from argus.table_aa000612_641cd8ce_ceff_4ea0_9b27_

yum安装报错error: unpacking of archive failed on file /usr/bin/xxxx: cpio: open Failed

Bash漏洞爆出来了,赶紧更新一下补丁,#yum -y update bash 报错了 error: unpacking of archive failed on file /usr/bin/bashbug-64;54254708: cpio: open 参考了网上资料,原来是以前加固时给/usr/bin加了i权限 # lsattr /usr | grep bin ----i-----I-- /usr/bin # chattr -i /usr/bin 然后yum安装就OK了 参考资料:http:

Nginx错误:nginx: [error] OpenEvent("Global\ngx_reload_6252") failed (2: The system cannot find the file specified)

执行nginx -s reload命令: nginx: [error] OpenEvent("Global\ngx_reload_6252") failed (2: The system cannot find the file specified) 错误原因: Nginx 尚未启动导致,执行 start nginx 命令开启Nginx

error: server certificate verification failed 解决方案

晚上使用更新源之后使用了git 命令,但是报错 error: server certificate verification failed 在stackoverflow 上有一页专门解答:server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none ,针对不同情况,里面有很多的解决方案. 我的属于系统时间错误,和下面这个问题相同: Another cause of

编译php提示configure: error: GD build test failed错误

在编译完gd库等相应文件后,编译php文件的过程中提示一下错误; configure: error: GD build test failed. Please check the config.log for details. 解决方法: 把php的编译参数: --with-gd 修改为: --with-gd=/usr/local/gd/ 再次对php进行编译  ./configure ...

【故障处理】ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository

今天在使用冷备份文件重做从库时遇到一个报错,值得研究一下. 版本:MySQL5.6.27 一.报错现象 dba:(none)> start slave; ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository 这个时候查看error.log: 2017-07-17 16:19:02 9022 [ERROR] Failed to open the relay log '.

cmake error(1): cmake_symlink_library: System Error: Operation not supported

cmake_symlink_library: System Error: Operation not supported 1/创建链接不成功,要确认当前帐户下是否有权限在编译的目录中有创建链接的权限 我使用vmware,在win7机器的共享目录中编译,无法创建链接,就会提示上面的错误. 解决办法是,把源码复制到linux的本地目录中,比如/home等,在本地目录中编译就不会有这个问题.