I would like to back up to more than one repo. How can I achieve this?

I want to back up to two repos.

My current command to use Kopia is
/usr/bin/kopia server start --insecure --without-password &

It sure would be nice to be able to add a second repo. It almost looks like that’s how it’s already designed, given the fact that it asks me what my repo is called. Why name something when you can only have one of them?

At any rate, until this is natively supported, what’s the best workaround?
Run another instance and point to a different config somewhere, and specify a different port to listen on and browse to that?

What would be the command for this?

That’s the answer. You can simplify reconnection to a different repo by generating connection token using

kopia repo status -t -s --config-path /path/to/config | egrep '^\$ kopia' 

for each of your repo and then use generate token to reconnect

kopia repository connect from-config --token ${reconnect_token};