问题
贪吃的程序猫
这个作者很懒,什么都没留下…
展开
-
docker使用时日志占用磁盘内存
今天我在使用远程服务器的mysql时。报错没有可用空间,刚到很奇怪,于是在服务器上使用df -h查看了服务器的状态发现,docker的日志吧服务器的内存给占用完了所以,使用以下命令找出占用内存过大的文件find / -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}使用rm -rf 文件将docker日志占用过大的文件进行删除,但是这种方法只是治标不治本,过段时间日志还是会起来的,所以,原创 2021-07-08 16:33:41 · 488 阅读 · 0 评论 -
docker启动redis时reids服务自动关闭的问题
在使用docker安装redis时,发现了容器启动关闭的问题然后查看日志,有3个警告,就算这三个警告导致的redis容器自动关闭1.The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.原因:一个高负载的环境来说tcp设置128这个值,太小了。解决方法:找到etc/sysctl.conf文件,将net.core.原创 2021-07-02 15:57:43 · 2777 阅读 · 0 评论 -
使用dubbo遇到了Unsatisfied dependency expressed through field ‘userService‘
在配置dubbo消费者的时候遇到了一个问题,提供者的接口无法注入错误详情org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.be原创 2021-05-12 11:30:20 · 3649 阅读 · 0 评论