Configuration fields

An array of additional host:port values, which will be included in the advertised NodeInfo in the network map in addition to the p2pAddress. Nodes can use this configuration option to advertise HA endpoints and aliases to external parties.

Default: empty list

Optionally specify how much memory should be used to cache attachment contents in memory.

Default: 10MB

List of SHA-256 hashes of public keys. Attachments signed by any of these public keys will not be considered as trust roots for any attachments received over the network. This property is similar to cordappSignerKeyFingerprintBlacklist but only restricts CorDapps that were included as attachments in a transaction and received over the network from a peer.

This property requires retrieving the hashes of public keys that need to be blacklisted.

Default: not defined

The root address of the Corda compatibility zone network management services, it is used by the Corda node to register with the network and obtain a Corda node certificate, and also is used by the node to obtain network map information. Cannot be set at the same time as the networkServices option.

Default: not defined

List of the public keys fingerprints (SHA-256 of public key hash) not allowed as Cordapp JARs signers. The node will not load Cordapps signed by those keys. The option takes effect only in production mode and defaults to Corda development keys (["56CA54E803CB87C8472EBD3FBC6A2F1876E814CEEBF74860BD46997F40729367", "83088052AF16700457AE2C978A7D8AC38DD6A7C713539D00B897CD03A5E5D31D"]), in development mode any key is allowed to sign Cordpapp JARs.

This property requires retrieving the hashes of public keys that need to be blacklisted.

Default: not defined

Set this configuration field to true to enable CRL checking of TLS certificates for inbound P2P connections into the embedded Artemis messaging server. The CRL checking mode is defined by crlCheckSoftFail option.

Default: false

This is a boolean flag that when enabled (i.e. true value is set) causes certificate revocation list (CRL) checking to use soft fail mode. Soft fail mode allows the revocation check to succeed if the revocation status cannot be determined because of a network error. If this parameter is set to false rigorous CRL checking takes place. This involves each certificate in the certificate path being checked for a CRL distribution point extension, and that this extension points to a URL serving a valid CRL. This means that if any CRL URL in the certificate path is inaccessible, the connection with the other party will fail and be marked as bad. Additionally, if any certificate in the hierarchy, including the self-generated node SSL certificate, is missing a valid CRL URL, then the certificate path will be marked as invalid.

By default, CRL checking is applicable only for outbound P2P connections. To enable it also for inbound P2P connections, set crlCheckArtemisServer=true.

Default: true

Set custom command line attributes (e.g. Java system properties) on the node process via the capsule launcher

  • jvmArgs
    • A list of JVM arguments to apply to the node process. This removes any defaults specified from corda.jar, but can be overridden from the command line.
    • Default: not defined

Database configuration

  • exportHibernateJMXStatistics
    • Whether to export Hibernate JMX statistics. Caution: enabling this option causes expensive run-time overhead
    • Default false

This section is used to configure the JDBC connection and database driver used for the node’s persistence. To add additional data source properties (for a specific JDBC driver) use the dataSource. prefix with the property name (e.g. dataSource.customProperty = value).

  • dataSourceClassName
    • JDBC Data Source class name.
  • dataSource.url
    • JDBC database URL.
  • dataSource.user
    • Database user.
  • dataSource.password
    • Database password.

Default:

dataSourceClassName = org.h2.jdbcx.JdbcDataSource
dataSource.url = "jdbc:h2:file:"${baseDirectory}"/persistence;DB_CLOSE_ON_EXIT=FALSE;WRITE_DELAY=0;LOCK_TIMEOUT=10000"
dataSource.user = sa
dataSource.password = ""

This flag toggles the auto IP detection behaviour. If enabled, on startup the node will attempt to discover its externally visible IP address first by looking for any public addresses on its network interfaces, and then by sending an IP discovery request to the network map service. Set to true to enable.

Default: false

This flag sets the node to run in development mode. On startup, if the keystore <workspace>/certificates/sslkeystore.jks does not exist, a developer keystore will be used if devMode is true. The node will exit if devMode is false and the keystore does not exist. devMode also turns on background checking of flow checkpoints to shake out any bugs in the checkpointing process. Also, if devMode is true, Hibernate will try to automatically create the schema required by Corda or update an existing schema in the SQL database; if devMode is false, Hibernate will simply validate the existing schema, failing on node start if the schema is either not present or not compatible. If no value is specified in the node configuration file, the node will attempt to detect if it’s running on a developer machine and set devMode=true in that case. This value can be overridden from the command line using the --dev-mode option.

This flag affects the default value for Java heap size.

Default: Corda will try to establish based on OS environment

Allows modification of certain devMode features

Allows a node configured to operate in development mode to connect to a compatibility zone.

Default: not defined

The email address responsible for node administration, used by the Compatibility Zone administrator.

Default: company@example.com

An optional list of private network map UUIDs. Your node will fetch the public network and private network maps based on these keys. Private network UUID should be provided by network operator and lets you see nodes not visible on public network.

Default: not defined

The number of threads available to execute external operations that have been called from flows.

Default: Set to the lesser of either the maximum number of cores allocated to the node, or 10.

Duration of the period suspended flows waiting for IO are logged.

Default: 60 seconds

Threshold duration suspended flows waiting for IO need to exceed before they are logged.

Default: 60 seconds

When a flow implementing the TimedFlow interface and setting the isTimeoutEnabled flag does not complete within a defined elapsed time, it is restarted from the initial checkpoint.

Currently only used for notarisation requests with clustered notaries: if a notary cluster member dies while processing a notarisation request, the client flow eventually times out and gets restarted. On restart the request is resent to a different notary cluster member in a round-robin fashion. Note that the flow will keep retrying forever.

  • timeout
    • The initial flow timeout period.
    • Default 30 seconds
  • maxRestartCount
    • The number of retries the back-off time keeps growing for. For subsequent retries, the timeout value will remain constant.
    • Default: 6
  • backoffBase
    • The base of the exponential backoff, t_{wait} = timeout * backoffBase^{retryCount}
    • Default:* 1.8

Defines port for h2 DB.

Sets the H2 JDBC server host and port. For non-localhost address the database password needs to be set in dataSourceProperties.

Default: NULL

An optional list of file system directories containing JARs to include in the classpath when launching via corda.jar only. Each should be a string. Only the JARs in the directories are added, not the directories themselves. This is useful for including JDBC drivers and the like. e.g. jarDirs = [ ${baseDirectory}"/libs" ]. (Note that you have to use the baseDirectory substitution value when pointing to a relative path).

Default: not defined

If set, will enable JMX metrics reporting via the Jolokia HTTP/JSON agent on the corresponding port. Default Jolokia access url is http://127.0.0.1:port/jolokia/

Default: not defined

Provides an option for registering an alternative JMX reporter. Available options are JOLOKIA and NEW_RELIC.

The Jolokia configuration is provided by default. The New Relic configuration leverages the Dropwizard NewRelicReporter solution.

Default: JOLOKIA

The password to unlock the KeyStore file (<workspace>/certificates/sslkeystore.jks) containing the node certificate and private key.

Important: This is the non-secret value for the development certificates automatically generated during the first node run. Alternatively, these keys can be managed in secure hardware devices.

Default: cordacadevpass

Internal option.

Default: true

The address of the ArtemisMQ broker instance. If not provided the node will run one locally. 0.0.0.0 should not be specified since this needs to be a valid client address.

Default: not defined

If messagingServerAddress is specified the default assumption is that the artemis broker is running externally. Setting this to false overrides this behaviour and runs the artemis internally to the node, but bound to the address specified in messagingServerAddress. This allows the address and port advertised in p2pAddress to differ from the local binding, especially if there is external remapping by firewalls, load balancers , or routing rules. Note that detectPublicIp should be set to false to ensure that no translation of the p2pAddress occurs before it is sent to the network map.

Default: not defined

The legal identity of the node. This acts as a human-readable alias to the node’s public key and can be used with the network map to look up the node’s info. This is the name that is used in the node’s certificates (either when requesting them from the doorman, or when auto-generating them in dev mode). At runtime, Corda checks whether this name matches the name in the node’s certificates. The name must be a valid X.500 distinguished name, as per the node naming constraints.

Default: not defined

This optional object configures the node to run as a notary. Specify the serviceLegalName and either the mysql (deprecated) or jpa configuration as described below, and set the validating boolean to true or false.

  • validating
    • Boolean to determine whether the notary is a validating or non-validating one.
    • Default: false
  • serviceLegalName
    • Specify the legal name of the cluster or node. Single node notaries still need to register a separate identity. At runtime, Corda checks whether this name matches the name of the certificate of the notary.
    • Default: not defined
  • etaMessageThresholdSeconds
    • If the wait time estimate on the internal queue exceeds this value, the notary may send a wait time update to the client (implementation specific and dependent on the counter party version).
    • Default: Implementation dependent
  • raft
    • (Deprecated) If part of a distributed Raft cluster, specify this configuration object with the following settings:
      • nodeAddress
        • The host and port to which to bind the embedded Raft server. Note that the Raft cluster uses a separate transport layer for communication that does not integrate with ArtemisMQ messaging services.

        • Default: not defined

        • clusterAddresses

          • Must list the addresses of all the members in the cluster. At least one of the members must be active and be able to communicate with the cluster leader for the node to join the cluster. If empty, a new cluster will be bootstrapped.
          • Default: not defined
  • bftSMaRt
    • (Deprecated) If part of a distributed BFT-SMaRt cluster, specify this configuration object with the following settings:
      • replicaId
        • The zero-based index of the current replica. All replicas must specify a unique replica id.
        • Default: not defined
  • clusterAddresses
    • Must list the addresses of all the members in the cluster. At least one of the members must be active and be able to communicate with the cluster leader for the node to join the cluster. If empty, a new cluster will be bootstrapped.
    • Default: not defined

Optional settings for managing the network parameter auto-acceptance behaviour. If not provided then the defined defaults below are used.

This flag toggles auto accepting of network parameter changes. If a network operator issues a network parameter change which modifies only auto-acceptable options and this behaviour is enabled then the changes will be accepted without any manual intervention from the node operator. See the network map page for more information on the update process and current auto-acceptable parameters. Set to false to disable.

Default: true

List of auto-acceptable parameter names to explicitly exclude from auto-accepting. Allows a node operator to control the behaviour at a more granular level.

Default: empty list

If both of the Corda compatibility zone services, network map and registration (doorman), are not running on the same endpoint and thus have different URLs, use this option in place of the compatibilityZoneURL setting.

  • doormanURL
    • Root address of the network registration service.
    • Default: not defined
  • networkMapURL
    • Root address of the network map service.
    • Default: not defined
  • pnm
    • Optional UUID of the private network operating within the compatibility zone this node should be joining.
    • Default: not defined
  • csrToken
    • Optional token to provide alongside the certificate signing request (CSR) as part of the HTTP header during node registration. The token can be used by certificate signing authority (or Identity Manager Service) to verify additional identity requirements. The maximum token length is limited by the maximum HTTP header size, which is normally 8KB, assuming that a few other internal attributes are also present in the header. Also, the token length itself may never exceed 8192, limited by the database structure. Only US-ASCII characters are allowed.
    • Default: not defined

The host and port on which the node is available for protocol operations over ArtemisMQ.

In practice the ArtemisMQ messaging services bind to all local addresses on the specified port. However, note that the host is the included as the advertised entry in the network map. As a result the value listed here must be externally accessible when running nodes across a cluster of machines. If the provided host is unreachable, the node will try to auto-discover its public one. 0.0.0.0 is not a valid host setting since p2pAddress must be an external client address.

Default: not defined

A list of packages to exclude from Quasar instrumentation. Wildcards are allowed, for example org.xml**.

Important: Do not change unless requested by support.

Default: empty list

Example configuration:

quasarExcludePackages=["org.xml**", "org.yaml**"]

If provided, the node will attempt to tunnel inbound connections via an external relay. The relay’s address will be advertised to the network map service instead of the provided p2pAddress.

  • relayHost
    • Hostname of the relay machine
  • remoteInboundPort
    • A port on the relay machine that accepts incoming TCP connections. Traffic will be forwarded from this port to the local port specified in p2pAddress.
  • username
    • Username for establishing an SSH connection with the relay.
  • privateKeyFile
    • Path to the private key file for SSH authentication. The private key must not have a passphrase.
  • publicKeyFile
    • Path to the public key file for SSH authentication.
  • sshPort
    • Port to be used for SSH connection, default 22.

The address of the RPC system on which RPC requests can be made to the node. If not provided then the node will run without RPC.

Default: not defined

Options for the RPC server exposed by the Node.

Important: The RPC SSL certificate is used by RPC clients to authenticate the connection. The Node operator must provide RPC clients with a truststore containing the certificate they can trust. We advise Node operators to not use the P2P keystore for RPC. The node can be run with the “generate-rpc-ssl-settings” command, which generates a secure keystore and truststore that can be used to secure the RPC connection. You can use this if you have no special requirements.

  • address
    • host and port for the RPC server binding.
    • Default: not defined
  • adminAddress
    • host and port for the RPC admin binding (this is the endpoint that the node process will connect to).
    • Default: not defined
  • standAloneBroker
    • boolean, indicates whether the node will connect to a standalone broker for RPC.
    • Default: false
  • useSsl
    • boolean, indicates whether or not the node should require clients to use SSL for RPC connections.
    • Default: false
    • ssl
      • (mandatory if useSsl=true) SSL settings for the RPC server.
      • keyStorePath`
        • Absolute path to the key store containing the RPC SSL certificate.
        • Default: not defined
      • keyStorePassword
        • Password for the key store.
        • Default: not defined

A list of users who are authorised to access the RPC system. Each user in the list is a configuration object with the following fields:

  • username
    • Username consisting only of word characters (a-z, A-Z, 0-9 and _)
    • Default: not defined
  • password
    • The password
    • Default: not defined
  • permissions
    • A list of permissions for starting flows via RPC. To give the user the permission to start the flow foo.bar.FlowClass, add the string StartFlow.foo.bar.FlowClass to the list. If the list contains the string ALL, the user can start any flow via RPC. Wildcards are also allowed, for example StartFlow.foo.bar.* will allow the user to start any flow within the foo.bar package. This value is intended for administrator users and for development.
    • Default:* not defined

Contains various nested fields controlling user authentication/authorization, in particular for RPC accesses.

If provided, node will start internal SSH server which will provide a management shell. It uses the same credentials and permissions as RPC subsystem. It has one required parameter.

port The port to start SSH server on e.g. sshd { port = 2222 }.

Default: not defined

An optional map of additional system properties to be set when launching via corda.jar only. Keys and values of the map should be strings. e.g. systemProperties = { "visualvm.display.name" = FooBar }

Default: not defined

There are new configuration fields for telemetry. See the OpenTelemetry section for more information.

  • openTelemetryEnabled
    • Specifies if the node should generate spans to be sent to a collector. The node will only generate spans if this property is set to true and an OpenTelemetry SDK is on the node classpath. By default, no OpenTelemetry SDK is on the node classpath, meaning by default no spans are actually generated. To prevent spans being generated regardless of whether the OpenTelemetry SDK is on the classpath, this configuration field should be set to false.
    • Default: true
  • spanStartEndEventsEnabled
    • When Corda generates spans for flows and certain significant operations, it has the capability to generate a span for starting the operation, ending the operation, and generating a single span to cover the whole operation. This can be useful to determine where a flow is stuck, as you will only see the start spans, and not the end spans. This is not standard OpenTelemetry behaviour, and it could also result in a lot of spans flooding the network. Setting this field to true will enable it.
    • Default: false
  • copyBaggageToTags
    • If set to true, this parameter will cause baggage to be copied to tags when generating spans. Baggage are fields which can be passed around with the invocation of OpenTelemetry.
    • Default: false
  • simpleLogTelemetryEnabled
    • Enables an alternative form of telemetry. If this field is set to true, log lines are written to logs when a flow or significant operation is started or ended. The log line specifies a trace ID, which allows flows to be matched up across nodes.
    • Default: false
  • Example configuration:
telemetry {
        openTelemetryEnabled=true
        spanStartEndEventsEnabled=false
        simpleLogTelemetryEnabled=false
      }

Optionally specify how much memory should be used for caching of ledger transactions in memory.

Default: 8 MB plus 5% of all heap memory above 300MB.

CRL distribution point (i.e. URL) for the TLS certificate. Default value is NULL, which indicates no CRL availability for the TLS certificate.

Important: This needs to be set if crlCheckSoftFail is false (i.e. strict CRL checking is on).

Default: NULL

CRL issuer (given in the X500 name format) for the TLS certificate. Default value is NULL, which indicates that the issuer of the TLS certificate is also the issuer of the CRL.

Important: If this parameter is set then tlsCertCrlDistPoint needs to be set as well.

Default: NULL

The password to unlock the Trust store file (<workspace>/certificates/truststore.jks) containing the Corda network root certificate. This is the non-secret value for the development certificates automatically generated during the first node run.

Default: trustpass

Internal option.

Important: Please do not change.

Default: false

Internal option.

Important: Please do not change.

Default: InMemory

This is an optional configuration option that enables you to detect unrestorable checkpoints when developing CorDapps and thus reduces the risk of writing flows that cannot be retried gracefully. To use this functionality, set reloadCheckpointAfterSuspend to true:

reloadCheckpointAfterSuspend = true

For full details, see Automatic detection of unrestorable checkpoints.

Default: not defined

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.