i’m seeing below error for docker containers can you please help to fix.
Failed in FTP Helper:HTTPConnectionPool(host=‘10.106.141.45’, port=28426): Max retries exceeded with url: /isconnector-prod/connectors/connection/process (Caused by NewConnectionError(‘: Failed to establish a new connection: [Errno 110] Connection timed out’))
The error is clear: the source can not connect to the target. You don’t explain what the source is, you don’t explain what the target is, not even if it’s an internal service. We don’t know if both are containers, we don’t know anything. How should we help?
Both are containers one is cluster another one is application, cluster containers calls app container’s API to check the status of cluster , below is the API which is being called from cluster container
it’s intermittent , not always , VM i mean to say OS is running as container , all ports are published & connecting from other severs via telnet as i mentioned above
If it doesn’t always happen, that also seems to point to a more general network issue. At least I don’t remember network issues caused by Docker CE intemittently. If it happens only from containers, you can check if MTU settings are correct and there is no big difference between the MTU of the docker networks and your LAN network. Running ip addr | grep -v 'lo:' | grep mtu can show your the MTU on the interfaces.
If you need to, you can change the mtu on Docker networks too.