DrawingProcess
드프 DrawingProcess
DrawingProcess
전체 방문자
오늘
어제
«   2025/06   »
일 월 화 수 목 금 토
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
  • 분류 전체보기 (964)
    • Profile & Branding (22)
      • Career (15)
    • IT Trends (254)
      • Conference, Faire (Experien.. (31)
      • News (187)
      • Youtube (19)
      • TED (8)
      • Web Page (2)
      • IT: Etc... (6)
    • Contents (97)
      • Book (66)
      • Lecture (31)
    • Project Process (94)
      • Ideation (0)
      • Study Report (34)
      • Challenge & Award (22)
      • 1Day1Process (5)
      • Making (5)
      • KRC-FTC (Team TC(5031, 5048.. (10)
      • GCP (GlobalCitizenProject) (15)
    • Study: ComputerScience(CS) (72)
      • CS: Basic (9)
      • CS: Database(SQL) (5)
      • CS: Network (14)
      • CS: OperatingSystem (3)
      • CS: Linux (39)
      • CS: Etc... (2)
    • Study: Software(SW) (95)
      • SW: Language (29)
      • SW: Algorithms (1)
      • SW: DataStructure & DesignP.. (1)
      • SW: Opensource (15)
      • SW: Error Bug Fix (43)
      • SW: Etc... (6)
    • Study: Artificial Intellige.. (149)
      • AI: Research (1)
      • AI: 2D Vision(Det, Seg, Tra.. (35)
      • AI: 3D Vision (70)
      • AI: MultiModal (3)
      • AI: SLAM (0)
      • AI: Light Weight(LW) (3)
      • AI: Data Pipeline (7)
      • AI: Machine Learning(ML) (1)
    • Study: Robotics(Robot) (33)
      • Robot: ROS(Robot Operating .. (9)
      • Robot: Positioning (8)
      • Robot: Planning & Control (7)
    • Study: DeveloperTools(DevTo.. (83)
      • DevTool: Git (12)
      • DevTool: CMake (13)
      • DevTool: NoSQL(Elastic, Mon.. (25)
      • DevTool: Container (17)
      • DevTool: IDE (11)
      • DevTool: CloudComputing (4)
    • 인생을 살면서 (64)
      • 나의 취미들 (7)
      • 나의 생각들 (42)
      • 여행을 떠나자~ (10)
      • 분기별 회고 (5)

개발자 명언

“ 매주 목요일마다 당신이 항상 하던대로 신발끈을 묶으면 신발이 폭발한다고 생각해보라.
컴퓨터를 사용할 때는 이런 일이 항상 일어나는데도 아무도 불평할 생각을 안 한다. ”

- Jef Raskin

맥의 아버지 - 애플컴퓨터의 매킨토시 프로젝트를 주도

인기 글

최근 글

최근 댓글

티스토리

hELLO · Designed By 정상우.
DrawingProcess

드프 DrawingProcess

Study: Software(SW)/SW: Error Bug Fix

[Error fix] Solved 'systemctl status docker Active: failed (Result: start-limit-hit)'

2023. 7. 26. 12:35
반응형

# Problem

When I trying to "docker-compose up -d", I got a that Issue.

$ docker-compose up -d
Creating network "minio_default" with the default driver
ERROR: Failed to Setup IP tables: Unable to enable SKIP DNAT rule:  (iptables failed: iptables --wait -t nat -I DOCKER -i br-fead109e5a90 -j RETURN: iptables: No chain/target/match by that name.
(exit status 1))

# Solution

And.. I just tried again, and again. "sudo reboot", "systemctl start docker", and so on.

$ systemctl start docker 
Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
[root@15d00ddbaf53 ~]$ systemctl status docker -l
● docker.service - Docker Application Container Engine
   Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; vendor preset: disabled)
   Active: failed (Result: start-limit) since Fri 2017-10-27 10:17:01 UTC; 4s ago
     Docs: https://docs.docker.com
  Process: 422 ExecStart=/usr/bin/dockerd (code=exited, status=1/FAILURE)
 Main PID: 422 (code=exited, status=1/FAILURE)

 

$ sudo systemctl restart docker.service
Error creating machine: Error running provisioning: ssh command error:
command : sudo systemctl restart docker.service
err     : exit status 1
output  : Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xe" for details.

So, I see "systemctl status docker.service" and "journalctl -xe" for details

$ sudo journalctl -xe
...
ubuntu firewalld/ ERROR: COMMAND_FAILED: '/sbin/iptables -w2 -t nat -C DOCKER -i br-3f15b91d6b98 -j RETURN' failed: iptables: Bad rule (does a matching rule exist in that chain?)
...

When I saw that message, finally I got it. It just about "firewalld".

$ sudo apt remove firewalld

And... Everything is under contol

# Reference

  • [google group] Anybody recognize this? "ERROR: Failed to Setup IP tables: Unable to enable SKIP DNAT rule": https://groups.google.com/g/islandora-isle/c/6qpQAi-uhRk?pli=1
  •  [StackOverFlow] How to resolve "service start-limit-hit": https://askubuntu.com/questions/1089310/how-to-resolve-service-start-limit-hit
반응형
저작자표시 비영리 변경금지 (새창열림)

'Study: Software(SW) > SW: Error Bug Fix' 카테고리의 다른 글

[Error fix] Solved 'The repository 'https://packagecloud.io/shiftkey/desktop/any any InRelease' is not signed.': The following signatures couldn't be verified because the public key is not available  (0) 2023.08.30
[Error fix] Solved 'error: RPC failed; curl 55 Failed sending data to the peer' & 'error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500'  (0) 2023.08.01
[Error fix] Solved 'error: update_ref failed for ref': Troubleshooting most remote branch to local branch relationships(feat. local branch clean-up, git branch)  (0) 2023.07.03
[Error Fix] Solved 'W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/source.list*'  (0) 2023.05.31
[Problem Fix] 윈도우 환경변수 재부팅 안하고 적용하기  (0) 2023.05.22
    'Study: Software(SW)/SW: Error Bug Fix' 카테고리의 다른 글
    • [Error fix] Solved 'The repository 'https://packagecloud.io/shiftkey/desktop/any any InRelease' is not signed.': The following signatures couldn't be verified because the public key is not available
    • [Error fix] Solved 'error: RPC failed; curl 55 Failed sending data to the peer' & 'error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500'
    • [Error fix] Solved 'error: update_ref failed for ref': Troubleshooting most remote branch to local branch relationships(feat. local branch clean-up, git branch)
    • [Error Fix] Solved 'W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/source.list*'
    DrawingProcess
    DrawingProcess
    과정을 그리자!

    티스토리툴바