1.注意Docker版本(此处版本为docker-ce-18.06.1) docker version 2.编辑Docker服务配置文件 vim /usr/lib/systemd/system/docker.service ...... [Service] Type=notify # the default is not to use systemd for cgroups because the delegate issues still # exists and systemd curren
在本地安装Kubernetes时,遇到错误消息: request canceled while waiting for connection(Client.Timeout exceeded while awaiting headers) 这个原因是Docker应用没有正确设置代理.在Mac上设置代理非常方便: Configure the proxies used by Docker to pull images. 选择Manual proxy configuration, 即手动设置. 设置完之
1. 问题背景 在一次新版本功能开发完毕,配合测试的过程中,测试反馈某个XxlJob定时任务一直执行失败,在分析了日志之后,找到了报错的原因: Packet for query is too large (7251422 > 4194304). You can change this value 是因为在程序中做了批量INSERT,而一次插入的数据量太大,超过了MySQL服务器的配置,导致插入失败.所以,我们只需要将这个配置改大一点就行. 2. 解决方案确定 经过搜索,发现决定单次插入数据量的配