关于The last packet sent successfully to the server was 0 milliseconds ago.

关于The last packet sent successfully to the server was 0 milliseconds ago._第1张图片

The last packet successfully received from the server was 58,948 milliseconds ago.  The last packet sent successfully to the server was 0 milliseconds ago.

释义:从服务器成功收到的最后一个数据包是58948毫秒之前。成功发送到服务器的最后一个数据包是在0毫秒之前。

出现的原因及解决:为什么会出现及多次出现的原因:
	 服务器的运行空间不足,删除多余日志,保证sqlsession可以被MySQL执行,到了这一步应该就没什么问题了.
附上我的Linux清理日志命令:
	-- 查看磁盘空间
	   df -hl
	-- journalctl -f -u 要查看的服务日志,例如: journalctl -f -u  nacos
	-- /usr/LOCAL/nacos/LOGS
	--  Linux:批量清空当前目录下的日志文件
		FOR i IN `find . -name "*.log"`;
		DO cat /dev/NULL >$i;
		done;
	-- 但是有的日志不是.log结尾的,所以建议直接使用xftp进入指定日志目录下,复制全部日志文件到Windows上,然后全部删除,过滤掉不需要的日志文件复制到Linux,此操作亲测可用.

你可能感兴趣的:(关于The last packet sent successfully to the server was 0 milliseconds ago.)