14

I have a keystore on one machine (at /root/.keystore) and I want to move it to another machine at the same location. Currently, the second machine doesn't have a keystore at /root/.keystore, is there a way I can export then create/import? Or do I need to create an empty one first?

Brandon
  • 247
  • 1
  • 2
  • 6

1 Answers1

22

Keystores are simply files in a format used by java for storing keys and certificates. They do not contain any information which ties them to a particular system. They can be freely copied between systems and directories as required.

They may be password protected, in which case you may need to arrange to have the password available to the software using it. There is a keytool program which can by used to read and/or update the keystore. It is often possible to read keystores without a password.

Keystore may contain keys tied to a system's domain name. These keys are not as useful on other system.

BillThor
  • 27,354
  • 3
  • 35
  • 69
  • Do you still need to restart java or something after the 'replace'? – DenCowboy Nov 21 '17 at 09:07
  • @DenCowboy Most software will load the keystore during initialization, so you should should restart your applications after replacing the keystore. – BillThor Nov 21 '17 at 21:48