tls_process: killed expiring key - hourly reconnect #2053
-
Hi, does anybody have any suggestions for a cause/fix for this? Transmission appears to reconnect every hour. I'm using PureVPN and running docker on an Unraid server. Thanks for any help or advice Andy This is an extract from the log |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
One of the things we do to the configs in order to make them work better with a container setup is to change some ping, keepalive and inactive options in the config. The inactive config is set to one hour: https://github.com/haugene/docker-transmission-openvpn/blob/master/openvpn/modify-openvpn-config.sh#L41-L54 We do this because of reports that Docker networking becomes unstable after X amount of time (days, weeks, who knows). So the thought is that if there is no traffic through the tunnel for one hour, things might be wrong and we trigger an exit. You could try to run with |
Beta Was this translation helpful? Give feedback.
-
Hi there, I am seeing the same thing with my VPN connection. Thought it was with the provider. I am still seeing it occur even when there is traffic - but I do not use Transmission, I have configured other docker containers to utilize the VPN network that is created.
It occurs exactly after an hour. Here is the end of the VPN initiating. Take note of the timestamp:
|
Beta Was this translation helpful? Give feedback.
One of the things we do to the configs in order to make them work better with a container setup is to change some ping, keepalive and inactive options in the config. The inactive config is set to one hour: https://github.com/haugene/docker-transmission-openvpn/blob/master/openvpn/modify-openvpn-config.sh#L41-L54
We do this because of reports that Docker networking becomes unstable after X amount of time (days, weeks, who knows). So the thought is that if there is no traffic through the tunnel for one hour, things might be wrong and we trigger an exit.
You could try to run with
CONFIG_MOD_PING=0
and see if that solves it for you. I know I've answered the same in another thread as well so i…