Using the below config on 3 Vault Raft cluster servers:
storage "raft" {
path = "C:\\raft"
node_id = "vault_1"
}
listener "tcp" {
address = "0.0.0.0:8200"
tls_cert_file="C:\\Vault\\cert.pem"
tls_key_file="C:\\Vault\\key.pem"
}
api_addr = "https://172.24.32.184:8200"
disable_mlock = true
cluster_addr = "https://172.24.32.184:8201"
ui = true
I am able to connect successfully via SSL (curl), but after the server starts up, I get a stream of logs (every second or so) that look like this:
2020-10-17T14:44:00.826-0500 [INFO] http: TLS handshake error from 172.24.32.3:26080: EOF
2020-10-17T14:44:04.563-0500 [INFO] http: TLS handshake error from 172.24.32.2:30899: EOF
2020-10-17T14:44:05.822-0500 [INFO] http: TLS handshake error from 172.24.32.3:26091: EOF
2020-10-17T14:44:09.519-0500 [INFO] http: TLS handshake error from 172.24.32.2:30919: EOF
2020-10-17T14:44:10.783-0500 [INFO] http: TLS handshake error from 172.24.32.3:26101: EOF
2020-10-17T14:44:14.494-0500 [INFO] http: TLS handshake error from 172.24.32.2:30950: EOF
2020-10-17T14:44:15.858-0500 [INFO] http: TLS handshake error from 172.24.32.3:26110: EOF
2020-10-17T14:44:19.567-0500 [INFO] http: TLS handshake error from 172.24.32.2:30980: EOF
2020-10-17T14:44:20.815-0500 [INFO] http: TLS handshake error from 172.24.32.3:26122: EOF
2020-10-17T14:44:24.529-0500 [INFO] http: TLS handshake error from 172.24.32.2:31024: EOF
2020-10-17T14:44:25.890-0500 [INFO] http: TLS handshake error from 172.24.32.3:26134: EOF
2020-10-17T14:44:29.500-0500 [INFO] http: TLS handshake error from 172.24.32.2:31046: EOF
2020-10-17T14:44:30.842-0500 [INFO] http: TLS handshake error from 172.24.32.3:26144: EOF
2020-10-17T14:44:34.562-0500 [INFO] http: TLS handshake error from 172.24.32.2:31111: EOF
2020-10-17T14:44:35.830-0500 [INFO] http: TLS handshake error from 172.24.32.3:26155: EOF
Can anyone help me with what these errors mean, and how I can correct my configuration to eliminate them?