- 博客(48)
- 收藏
- 关注
原创 解决docker commit报错:invalid reference format: repository name must be lowercase
解决docker commit报错:invalid reference format: repository name must be lowercase
2021-05-11 09:46:16
5851
原创 C++并发编程五:(std::condition_variable详解)
c++11多线程 条件变量 std::condition_variable 类介绍
2021-04-09 13:57:09
7816
原创 解决 OpenCV Error: Insufficient memory (Failed to allocate 3221225472 bytes) in cv::OutOfMemoryError
opencv报错 cvLoadImage OpenCV Error: Insufficient memory (Failed to allocate 3221225472 bytes) in cv::OutOfMemoryError
2021-03-25 09:54:09
20580
2
原创 k8s pod OOMKilled 错误原因
k8s oomkilled 错误原因:容器使用的内存资源超过了限制。只要节点有足够的内存资源,那容器就可以使用超过其申请的内存,但是不允许容器使用超过其限制的资源。在yaml文件的resources.limits.memory 下定义了容器使用的内存限制,如果容器中的进程使用内存超过这个限制,就会出现oomkilled错误,容器被终止。resources: limits: cpu: '8' memory: 32Gi解决办法:1.优化程序,使之使用内存大小在范围内 2.修改.
2021-03-24 10:26:00
16191
2
原创 c++ - boost::program_options:如何忽略未知参数?
c++ boost program_options 忽略未知参数
2021-03-03 16:43:10
391
1
原创 解决mysql 1602错误:Error Duplicate entry ‘***‘ for key ‘PRIMARY‘
主键重复 insert ignore Error Duplicate entry ‘***‘ for key ‘PRIMARY‘
2021-02-23 16:15:15
3783
原创 mysql删除表时报错:Cannot delete or update a parent row: a foreign key constraint fails 解决办法
mysql删除表时报错:Cannot delete or update a parent row: a foreign key constraint fails 解决办法
2021-02-05 14:47:53
2031
原创 解决运行时报错:error while loading shared libraries xxx.so,cannot open shared object file
linux下c++程序运行时报错error while loading shared libraries xxx.so解决办法
2020-12-04 11:49:59
40377
10
原创 linux报错:bash: syntax error near unexpected token `(‘ --路径中有括号怎么处理?
linux命令 路径中包含特殊字符
2020-11-24 10:36:50
2022
8
原创 redis 编译报错 zmalloc.h:50:10: fatal error: jemalloc/jemalloc.h: 没有那个文件或目录
redis编译报错
2020-11-01 18:32:25
3599
1
原创 解决Navicat 连接mysql报错:Can‘t connect to MYSQL server on “ip address“(10061)
解决mysql连接报错:Can‘t connect to MYSQL server on “ip address“(10061)
2020-10-27 16:11:31
9809
3
原创 mysql 8.0版本修改密码
操作系统+版本:ubuntu.20.04mysql版本:8.0.21结论:可以使用以下两种方法修改密码第一种方式:ALTER USER 'root'@'localhost' IDENTIFIED BY '新密码';第二种方式:ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';尝试使用的命令如下:第一种方式:ALTER USER 'root'@'localhost..
2020-10-27 14:00:33
339
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人