CENM test environment quick start guide

This guide provides a set of simple steps for creating a permissioned Corda network consisting of the following:

For a full production environment you would need to modify this deployment to add:

  • A Signing Service deployment to replace the built-in (local) signing component of the Identity Manager and Network Map Services.
  • A Zone Service deployment to manage configuration deployment.
  • Angel Services around the Identity Manager, Network Map, and Signing Services to fetch configurations from the Zone Service.
  • An Auth Service deployment to handle user authentication and authorisation.
  • A Gateway Service deployment to act as a gateway from the user interface (CLI) to the back-end services.

Ensure you have copies of the following files (provided by R3), before creating your network:

  • Identity Manager distribution .zip
  • Network Map distribution .zip
  • PKI Tool distribution .zip (for PKI generation)
  • A Corda JAR (for the Notary node)
  • 3 Machines set up with Java 8 installed (if not running locally).

To create your permissioned network takes several steps:

  1. Generate the PKI
  2. Start the Identity Manager Service
  3. Register the Notary with the Identity Manager Service
  4. Sign the notary’s identity
  5. Set initial network parameters
  6. Start the Network Map Service
  7. Start the Notary

These are described in detail below:

You need to generate the PKI (key pairs and certificates each service will use) first before starting any services.

In the example below, the configuration file (pki-generation.conf) uses a placeholder value for <IDENTITY_MANAGER_ADDRESS> which you should replace with the external IP/hostname of the Identity Manager Service.

certificates = {
    "::CORDA_TLS_CRL_SIGNER" = {
        crl = {
            crlDistributionUrl = "http://<IDENTITY_MANAGER_ADDRESS>/certificate-revocation-list/tls"
            indirectIssuer = true
            issuer = "CN=Test TLS Signer Certificate, OU=Corda, O=R3 HoldCo LLC, L=New York, C=US"
            file = "./crl-files/tls.crl"
        }
    },
    "::CORDA_ROOT" = {
        crl = {
            crlDistributionUrl = "http://<IDENTITY_MANAGER_ADDRESS>/certificate-revocation-list/root"
            file = "./crl-files/root.crl"
        }
    }
    "::CORDA_SUBORDINATE" = {
        crl = {
            crlDistributionUrl = "http://<IDENTITY_MANAGER_ADDRESS>/certificate-revocation-list/subordinate"
            file = "./crl-files/subordinate.crl"
        }
    },
    "::CORDA_IDENTITY_MANAGER",
    "::CORDA_NETWORK_MAP"
}

This configuration is useful if you want to generate the certificates in the PKI without CRL extensions, which is simpler however you cannot update them later or use certificate revocation. If you do not need to use certificate revocation, use the following configuration:

certificates = {
    "::CORDA_TLS_CRL_SIGNER",
    "::CORDA_ROOT",
    "::CORDA_SUBORDINATE",
    "::CORDA_IDENTITY_MANAGER",
    "::CORDA_NETWORK_MAP"
}

This step generates the required certificate stores and key pairs using the Public Key Infrastructure (PKI) Tool. You will need to extract the PKI tool distribution zip archive to a chosen location, and run it using a command such as:

```bash
java -jar pkitool.jar --config-file pki-generation.conf
```

This will produce the following set of files:

  • key-stores/corda-identity-manager-keys.jks - Contains the key pairs for the Identity Manager Service which are used for signing Certificate Signing Requests (CSRs) and Certificate Revocation Requests (CRRs)
  • key-stores/corda-network-map-keys.jks - Contains the key pairs for the Network Map Service which are used for signing the Network Map and Network Parameters
  • trust-stores/network-root-truststore.jks - Contains the network root certificate and the TLS CRL signing certificate which are used by nodes to verify that responses from other participants on the network are valid

If you run the PKI tool with the alternative example configuration with CRL enabled, a further set of CRL files will be created under the crl-stores/ folder. Although these files are not required to get a basic network up and running, additional functionalities such as certificate revocation support, will be available for you to use when required.

Extract the Zip archive containing the Identity Manager, then copy the key-stores/corda-identity-manager-keys.jks generated by the PKI tool to the Identity Manager host (or directory location if running locally).

This example provides a sample configuration (identity-manager.conf) for the Identity Manager Service, using automatic approval and local signing for CSRs:

address = "localhost:10000"

database {
    driverClassName = org.h2.Driver
    url = "jdbc:h2:file:./identity-manager-persistence;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;WRITE_DELAY=0;AUTO_SERVER_PORT=0"
    user = "example-db-user"
    password = "example-db-password"
}

shell {
    sshdPort = 10002
    user = "testuser"
    password = "password"
}

localSigner {
    keyStore {
        file = corda-identity-manager-keys.jks
        password = "password"
    }
    keyAlias = "cordaidentitymanagerca"
    signInterval = 10000
    # This CRL parameter is not strictly needed. However if it is omitted, then revocation cannot be used in the future so it makes sense to leave it in.
    crlDistributionUrl = "http://"${address}"/certificate-revocation-list/doorman"
}

workflows {
    "issuance" {
        type = ISSUANCE
        updateInterval = 10000
        plugin {
            pluginClass = "com.r3.enmplugins.approveall.ApproveAll"
        }
    }
}

Start the Identity Manager Service via:

java -jar identitymanager.jar --config-file identity-manager.conf

You will see the following message printed to the console if your start-up is successful:

Binding Shell SSHD server on port <SHELL_PORT>
Network management web services started on <IDENTITY_MANAGER_ADDRESS> with [RegistrationWebService, MonitoringWebService]

You need to register the Notary with the Identity Manager Service before the Network Map Service can be initialised. This is because the list of trusted notaries is stored within the Network Parameters, which have to be passed to the Network Map Service during initialisation.

Copy the trust-stores/network-root-truststore.jks generated by the PKI tool to the Notary host (or directory location if running locally), along with a valid Corda JAR (e.g. Corda OS 4.5).

This is an example node.conf file, with dummy values for the endpoints. As these endpoints are dependent on the setup of the machines, replace them with their true values (e.g. external IP addresses for machines).

myLegalName="O=NotaryA,L=London,C=GB"
notary {
    validating=false
}

networkServices {
  doormanURL="http://<IDENTITY_MANAGER_ADDRESS>"
  networkMapURL="http://<NETWORK_MAP_ADDRESS>"
}

devMode = false

sshd {
  port = 2222
}

p2pAddress="<NOTARY_HOST>:30000"
rpcUsers=[
  {
    user=testuser
    password=password
    permissions=[
        ALL
    ]
  }
]

rpcSettings {
  address = "<NOTARY_HOST>:30001"
  adminAddress = "<NOTARY_HOST>:30002"
}

On first run you need to run the Corda node with the --initial-registration parameter, as shown below:

java -jar corda.jar --initial-registration --network-root-truststore-password trustpass --network-root-truststore network-root-truststore.jks

This will result in the node registering with the Identity Manager, creating a node info file in the process. In a production environment we would typically use a separate Signing Service and manually sign CSRs, however for this quick start the Identity Manager is configured to use a local signer.

Copy the node info generated file to the Network Map machine, as it is needed for initialising the network parameters.

Copy the corda-network-map-keys.jks and network-root-truststore.jks files over to the Network Map host, along with the Network Map zip archive which you will need to unpack.

Before starting the Network Map Service, you will need to set initial network parameters. The network parameters are a set of values that every node participating in the zone needs to agree on and use to correctly communicate with each other. Setting the parameters is covered below, after configuration of the service.

This is a sample configuration (network-map.conf) for the Network Map Service, using automatic approval and local signing for updates to the network map and parameters:

address = "localhost:20000"

database {
    driverClassName = org.h2.Driver
    url = "jdbc:h2:file:./network-map-persistence;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;WRITE_DELAY=0;AUTO_SERVER_PORT=0"
    user = "example-db-user"
    password = "example-db-password"
}

shell {
    sshdPort = 20002
    user = "testuser"
    password = "password"
}

localSigner {
    keyStore {
        file = corda-network-map-keys.jks
        password = "password"
    }
    keyAlias = "cordanetworkmap"
    signInterval = 10000
}

pollingInterval = 10000
checkRevocation = false

This is a sample configuration file (network-parameters.conf) that is passed to the service when you set the network parameters. The <NOTARY_NODE_INFO_FILENAME> should correspond to the node info file copied across while registering the Notary with the Identity Manager. The configured path should be relative to the Network Map working directory.

notaries : [
  {
    notaryNodeInfoFile: <NOTARY_NODE_INFO_FILENAME>
    validating: false
  }
]
minimumPlatformVersion = 3
maxMessageSize = 10485760
maxTransactionSize = 10485760
eventHorizonDays = 30

To set the network parameters we pass additional arguments when starting the Network Map Service, as below:

java -jar networkmap.jar --config-file network-map.conf --set-network-parameters network-parameters.conf --network-truststore network-root-truststore.jks --truststore-password trustpass --root-alias cordarootca

Upon successfully setting the initial parameters, you will see the following details displayed to the console:

Saved initial network parameters to be signed:
NetworkParameters {
  minimumPlatformVersion=3
  notaries=[NotaryInfo(identity=O=NotaryA, L=London, C=GB, validating=false)]
  maxMessageSize=10485760
  maxTransactionSize=10485760
  whitelistedContractImplementations {

  }
  eventHorizon=PT720H
  modifiedTime=<ACTUAL_MODIFIED_TIME>
  epoch=1
}

See Updating the network parameters for more information on the process for setting and updating the parameters.

You can start the Network Map Service via:

java -jar networkmap.jar --config-file network-map.conf

Upon successful start-up, you will see the following details printed to the console:

Binding Shell SSHD server on port <SHELL_PORT>
Network management web services started on <NETWORK_MAP_ADDRESS> with [NetworkMapWebService, MonitoringWebService]

The two main components of your network should now be fully functional and hence the Notary node can be started:

java -jar corda.jar

Nodes will now be able to register and join the network. To do this they will need to have a node configuration file similar to the example Notary configuration above (including the correct Network Map and Identity Manager endpoints) as well as a copy of the network-root-truststore.jks file.

You can inspect each service via its interactive shell. For example, for the above configurations, the Network Map shell can be accessed by connecting to the Network Map Service via ssh, using the following:

  • username
  • password
  • port as shown in the example network-map.conf.

Use the following command if running a network locally:

ssh testuser@localhost -p 20002

Note: For the purpose of this exercise, the simplest settings have been used for all the services. However, you can configure them to run with more features, such as the following:

You can simplify the steps mentioned above by using a single service which bundles multiple services together.

  • To do this, download Bundled Service distribution “.zip” file. The Service configuration files will remain unchanged.

The standard run command form is generalised for running multiple services:

java -jar bundled.jar -f <conf_1> ... -f <conf_n> -S <service_1> ... -S <service_n>

For example, you can run Identity Manager and Network Map in parallel:

java -jar bundled.jar -f identity-manager.conf -f network-map.conf -S IDENTITY_MANAGER -S NETWORK_MAP

Upon successful start-up, you will see the following details printed to the console:

Binding Shell SSHD server on port <SHELL_PORT>
Network management web services started on <IDENTITY_MANAGER_ADDRESS> with [RegistrationWebService, MonitoringWebService]
Binding Shell SSHD server on port <SHELL_PORT>
Network management web services started on <NETWORK_MAP_ADDRESS> with [NetworkMapWebService, MonitoringWebService]

You could also run this service as a template for one of the services you want to run. The Bundled service deduces which service to run from the configuration file, making this feature backward compatible with CENM 1.1.

For example, you can implicitly run the Identity Manager Service:

java -jar bundled.jar -f identity-manager.conf

Upon successful start-up, you should see the following details printed to the console:

Deduced Identity Manager Service from provided configuration file...
Binding Shell SSHD server on port <SHELL_PORT>
Network management web services started on <IDENTITY_MANAGER_ADDRESS> with [RegistrationWebService, CertificateRevocationWebService, MonitoringWebService]

Was this page helpful?

Thanks for your feedback!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.

We're sorry this page wasn't helpful. Let us know how we can make it better!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Create an issue

Create a new GitHub issue in this repository - submit technical feedback, draw attention to a potential documentation bug, or share ideas for improvement and general feedback.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.