首页 > 系统相关 >centos iptables xtables-multi

centos iptables xtables-multi

时间:2024-04-29 18:36:23浏览次数:31  
标签:iptables multi 17 xtables a03 57 42 29

docker 启动
systemctl start docker

# 失败


查看原因 journalctl -xeu docker

4月 29 17:57:42 a03 dockerd[55315]: time="2024-04-29T17:57:42.491144216+08:00" level=info msg="Starting up"

4月 29 17:57:42 a03 dockerd[55315]: time="2024-04-29T17:57:42.663912885+08:00" level=info msg="[graphdriver] using prior storage driver: overlay2"

4月 29 17:57:42 a03 dockerd[55315]: time="2024-04-29T17:57:42.666735660+08:00" level=info msg="Loading containers: start."

4月 29 17:57:42 a03 dockerd[55315]: time="2024-04-29T17:57:42.688730867+08:00" level=warning msg="failed to find iptables" error="exec: \"iptables\": executable file not found in $PATH"

4月 29 17:57:42 a03 dockerd[55315]: failed to start daemon: Error initializing network controller: error obtaining controller instance: failed to register "bridge" driver: failed to create NAT chain DOCKER: iptables not found

4月 29 17:57:42 a03 systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE

4月 29 17:57:42 a03 systemd[1]: Failed to start Docker Application Container Engine.

 

# 安装 iptables

yum install iptables-services

 

# 执行iptables, 发现没有

# 然后 启动docker 还是失败

# 发现有个xtables-multi ,这个是一坨大杂烩,建立一个软链,就好了

cd /sbin

ln -s xtables-multi iptables

 

 

 

标签:iptables,multi,17,xtables,a03,57,42,29
From: https://www.cnblogs.com/fadedlemon/p/18166462

相关文章

  • start windows executable in multi-process and wait its ending
    theexecutableimporttimeimportrandomimportsystime.sleep(random.random())print(sys.argv[1])thecallingcontrolimportsubprocessll=[]foriiinrange(8):ll.append(subprocess.Popen(f"pythonab.pymk{ii}"#maybesom......
  • 2018-2019 ACM-ICPC, China Multi-Provincial Collegiate Programming Contest
    A.MaximumElementInAStack按照题目模拟就好,栈内的最大值可以维护单调栈解决。#include<bits/stdc++.h>usingnamespacestd;usingi64=longlong;usingui32=unsignedint;ui32SA,SB,SC;ui32rng61(){SA^=SA<<16;SA^=SA>>5;SA^......
  • k8s kube-proxy 负载均衡路由策略 IPVS 为什么iptables 更高效
    环境lsb_release-aNoLSBmodulesareavailable.DistributorID: UbuntuDescription: Ubuntu24.04LTSRelease: 24.04Codename: noble先说原理iptables如果服务过多或者pod过多就要则添加海量的iptabes规则iptables使用的具体算法主要是线性搜索,也可以称为顺......
  • [Paper Reading] DETR3D: 3D Object Detection from Multi-view Images via 3D-to-2D
    名称DETR3D:3DObjectDetectionfromMulti-viewImagesvia3D-to-2DQueries时间:21.10机构:mit/CMU/StanfordTL;DR一种利用Transformer做E2E的3D目标检测方法,在nuScenes自动驾驶数据集上取得很好效果。Method主要创新点在于2D-to-3DFeatureTransforms模块,细节如图描......
  • 开源相机管理库Aravis例程学习(四)——multiple-acquisition-signal
    目录简介例程代码函数说明g_main_loop_newg_main_loop_rung_main_loop_quitg_signal_connectarv_stream_set_emit_signalsQ&A回调函数的同步调用与异步调用帧丢失问题简介本文针对官方例程中的:02-multiple-acquisition-signal做简单的讲解。并简单介绍其中调用的g_main_loop_new......
  • Converge: QoE-driven Multipath Video Conferencing over WebRTC 概略
    这是一片2023sigcomm的文章。论文指出多摄像头(multiplecamera)和高分辨率(highresolution)场景下,视频会议的QoE还有提升空间,而作者将提升QoE的目光转到多路传输(multipath)上。所以总体来看这是一篇利用多路传输来优化视频会议体验的文章。常用的多路协议包括MPTCP,MPQUIC,MPRTP经过......
  • iptables清空所有规则
    编写Shell脚本以备份和还原规则在清空规则之前,可以使用iptables-save命令将当前规则保存到文件中,以备之后的恢复。之后,可以使用iptables-restore命令来还原规则。保存规则到文件:shelliptables-save>backup.rules清空所有规则:shelliptables-Fiptables-tnat-Fiptables-t......
  • 使用@MultipartConfig上传图片文件
    @MultipartConfig是JavaServletAPI的一部分,主要用于处理HTTP的multipart/form-data类型的请求,这种请求通常用于文件上传。当你在Servlet或JSP页面中使用@MultipartConfig时,你告诉容器这个Servlet或JSP页面将处理文件上传。@MultipartConfig(location="C:/Users/Administrator......
  • Error: --recode does not support multipass recoding of very large files.
     001、问题 Error:--recodedoesnotsupportmultipassrecodingofverylargefiles.(base)[root@pc1test01]#plink--bfilef1--sheep--recodetab--outtest##使用命令  002、问题原因,内存过小 003、测试[root@pc1test01]#lsf1.bedf1.b......
  • multiset容器
    和set容器不同的是,multiset容器可以存储多个值相同的元素。multiset容器类模板的定义如下所示:template<classT,//存储元素的类型classCompare=less<T>,//指定容器内部的排序规则classAlloc=allocator<T......