资产侦察灯塔系统下载:
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 为磁盘使用空间不足,重新划分空间安全后,启动正常
.