Centos7 终端报Message from syslogd :kernel:unregister_netdevice

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 终端报Message from syslogd :kernel:unregister_netdevice相关的知识,希望对你有一定的参考价值。

参考技术A 在使用k8s集群的过程中,有些doceker容器注册网卡之后,没有及时释放。导致频繁报出日志告警。
而此时远程终端打字都比较困难,老是被打断,那么该怎么去临时解决这个问题呢?

其实这个并不会影响什么,但是要单个去处理又很麻烦。所以,先决定停止这类告警,然后后续再考虑如何下一步处理问题。
那么如何停止这类告警呢?

这类告警信息都是由linux系统中的syslog服务提供的。

关闭 rsylog 服务之后,终端打字就不会受到影响了,如果还要看日志信息,可以使用 journalctl -f 来进行查看,如下:

打开配置文件 /etc/rsyslog.conf

注释了这句所有人发送紧急通知之后,重启启动进程服务。

注释之后,启动服务之后,屏幕上就会继续告警打断打字了,下一步就是找个时间来具体看看这个网卡的原因。

CentOS8中执行mysqladmin重置密码报错问题

报错现象:

connect to server at ‘localhost‘ failed

error: ‘Access denied for user ‘root‘@‘localhost‘ (using password: YES)‘

解决方案:

1,执行/etc/init.d/mysqld stop停止mysql服务

2,新开一个终端执行:mysqld_safe --skip-grant-tables &

3,在原来的终端执行命令:/usr/bin/mysql -uroot -p

  进行无密码root账号登陆

  此时提示输入密码直接Enter键

4,手动修改密码

  mysql> use mysql;

  Database changed

  mysql> UPDATE user set password=password("root") where user=‘root‘ and host=‘localhost‘;
  Query OK, 0 rows affected (0.00 sec)
  Rows matched: 1 Changed: 0 Warnings: 0

  mysql> flush privileges;
  Query OK, 0 rows affected (0.00 sec)

  mysql> quit
  Bye

再次登录:成功!

技术图片

 

以上是关于Centos7 终端报Message from syslogd :kernel:unregister_netdevice的主要内容,如果未能解决你的问题,请参考以下文章

linux 终端报Message from syslogd

Message from syslogd不停的打日志

记录一次爬虫报错:Message: Failed to decode response from marionette

Mysql更新数据时,报 “You can't specify target table 'message ' for update in FROM clause” 解决办法

今天碰到报错 Data source rejected establishment of connection, message from server: "Too many conne

centos7在命令界面使用命令可以执行,但在jenkins中输入命令报Chrome has crashed.