问题描述:
电商新申请的云主机访问同机房的redis ,出现小部分超时,时段时序,很是头疼,经过排查,宿主机iptables 规则导致,卸载iptables 解决不了问题,需要彻底卸载iptalbes nat 模块,搞定!
操作方法:
1
2
|
# rmmod ip_tables ERROR: Module ip_tables is in use by iptable_filter
|
1
2
3
4
5
6
|
rmmod ip_tables 提示已使用,采用modprobe -r 强制卸载 # modprobe -r iptable_filter # modprobe -r ip_tables # lsmod|grep -c tables |
业务反馈,服务正常
本文转自 swq499809608 51CTO博客,原文链接:http://blog.51cto.com/swq499809608/1962080