Troubleshooting of docker errors: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 63: | Line 63: | ||
[[Category: Programming]] | [[Category: Programming]] | ||
[[Category: Docker]] | |||
Revision as of 11:12, 22 January 2025
Troubleshooting of docker errors
General Troubleshooting Steps of Docker Errors
Viewing Docker Logs
Enter the following command
tail /home/dockerd.log
Or the see the log of specific container ID
docker logs <Container ID> # OR enter the following command which the log was updated automatically docker logs -f --details <Container ID>
Useful Tools
Common Error Solutions
Error: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Error condition: After I inputted the command docker ps, I met the error message as follows:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Solution:
- On CentOS: sudo systemctl start docker[1]
Error response from daemon: dial unix docker.raw.sock: connect: connection refused (on Mac)
Error condition: After I inputted the command docker ps, I met the error message as follows:
Error response from daemon: dial unix docker.raw.sock: connect: connection refused
Solution: Make sure the docker is running. After docker was lunched, the result of command docker ps should be:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
Error response from docker desktop: credential when tried to docker push
Solution: Login the account of docker hub
Error response from docker desktop: denied: requested access to the resource is denied when tried to docker push
Solution: Add tag to the docker image you want to publish[2]
docker tag <IMAGE ID> <ACCOUNT NAME>/<NAME>:<TAG>
References
Troubleshooting of ...
- PHP, cUrl, Python, selenium, HTTP status code errors
- Database: SQL syntax debug, MySQL errors, MySQLTuner errors or PostgreSQL errors
- HTML/Javascript: Troubleshooting of javascript, XPath
- Software: Mediawiki, Docker, FTP problems, online conference software
- Test connectivity for the web service, Web Ping, Network problem, Web user behavior, Web scrape troubleshooting
Template