资产侦察灯塔系统下载:
https://github.com/TophantTechnology/ARL
在docker pull,并部署后,登录系统报错 timeout of 12000ms exceeded错误
备注学习:
杀死所有正在运行的容器
docker kill $(docker ps -a -q)删除所有已经停止的容器
docker rm $(docker ps -a -q)删除所有未打 dangling 标签的镜
docker rmi $(docker images -q -f dangling=true)删除所有镜像
docker rmi $(docker images -q)
通过命令docker ps -a
查看反馈:
Restarting (1) 5 minutes ago
通过命令
docker logs 188219860f55
查询对应日志:
bout to fork child process, waiting until server is ready for connections.
forked process: 23
2020-09-15T09:19:04.640+0000 I CONTROL [main] ***** SERVER RESTARTED *****
2020-09-15T09:19:04.654+0000 I CONTROL [main] ERROR: Cannot write pid file to /tmp/docker-entrypoint-temp-mongod.pid: No space left on device
ERROR: child process failed, exited with error number 1
To see additional information in this output, start without the “–fork” option.
about to fork child process, waiting until server is ready for connections.
forked process: 23
2020-09-15T09:19:06.443+0000 I CONTROL [main] ***** SERVER RESTARTED *****
2020-09-15T09:19:06.480+0000 I CONTROL [main] ERROR: Cannot write pid file to /tmp/docker-entrypoint-temp-mongod.pid: No space left on device
ERROR: child process failed, exited with error number 1
To see additional information in this output, start without the “–fork” option.
解决:
检查df -h 为磁盘使用空间不足,重新划分空间安全后,启动正常
.
拓展阅读(点评/知识):
参考:
https://blog.csdn.net/m0_37724841/article/details/90694612
https://blog.csdn.net/jeikerxiao/article/details/78476925?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.edu_weight&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.edu_weight
https://www.jb51.net/article/158452.htm
本文标题: | 资产侦察灯塔系统部署及docker问题 |
本文链接: (转载请附上本文链接) | https://vulsee.com/archives/vulsee_2020/0918_12836.html |