1
votes

I have generated self signed keystore and certificate using keytool command, is there any way to register it as part of node's identity. Thanks

1

1 Answers

2
votes

The keystore and certificates are generated automatically when running the nodes in dev mode. You do this by adding the following line to each node's node.conf file:

devMode : true

See https://docs.corda.net/corda-configuration-file.html for more details.

Once the keystore and certificates have been generated, you can turn off dev mode if you want. You do this by stopping each node, setting devMode : false, and restarting each node.