Hello,
On the server workstation, I can start my server with
kopia server start
–tls-cert-file ~/my.cert --tls-key-file ~/my.key
–address https://0.0.0.0:51515
–server-control-username control --server-control-password my-password
After shutdown, on the server workstation, I changed 0.0.0.0 with 192.168.1.52 (which is the LAN address of the server workstation) and the server started. From a remote workstation, I then could create snapshots using “–address https://192.168.1.52:51515”
I copied the certificate and the key files to the remote station and typed
kopia server start
–tls-cert-file ~/my.cert --tls-key-file ~/my.key
–address https://192.168.1.52:51515
–server-control-username control --server-control-password my-password
and I got the error "ERROR failed to open repository: unable to establish session for purpose=: error establishing session: Session(): rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing: dial tcp 192.168.1.52:51515: connect: connection refused ».
Of course, connection to 192.168.1.52 is not refused as I can create snapshots.
Where is my mistake?
Christian
PS: and “kopia server shutdown … --address https://192.168.1.52:51515 …” works from the remote workstation.