2017-11-29 17:07:13 +00:00
|
|
|
Running nodes locally
|
|
|
|
=====================
|
2016-08-23 10:25:06 +01:00
|
|
|
|
2017-11-29 17:07:13 +00:00
|
|
|
.. contents::
|
|
|
|
|
|
|
|
.. note:: You should already have generated your node(s) with their CorDapps installed by following the instructions in
|
|
|
|
:doc:`generating-a-node`.
|
|
|
|
|
|
|
|
There are several ways to run a Corda node locally for testing purposes.
|
|
|
|
|
2018-03-13 04:03:17 +09:00
|
|
|
Starting a Corda node using DemoBench
|
|
|
|
-------------------------------------
|
|
|
|
See the instructions in :doc:`demobench`.
|
2017-11-30 10:38:06 +00:00
|
|
|
|
|
|
|
.. _starting-an-individual-corda-node:
|
|
|
|
|
2018-03-13 04:03:17 +09:00
|
|
|
Starting a Corda node from the command line
|
|
|
|
-------------------------------------------
|
|
|
|
Run a node by opening a terminal window in the node's folder and running:
|
2016-08-23 10:25:06 +01:00
|
|
|
|
2017-03-21 14:45:18 +01:00
|
|
|
.. code-block:: shell
|
|
|
|
|
2017-07-25 09:26:35 +01:00
|
|
|
java -jar corda.jar
|
2016-08-23 10:25:06 +01:00
|
|
|
|
2017-11-30 10:38:06 +00:00
|
|
|
By default, the node will look for a configuration file called ``node.conf`` and a CorDapps folder called ``cordapps``
|
|
|
|
in the current working directory. You can override the configuration file and workspace paths on the command line (e.g.
|
|
|
|
``./corda.jar --config-file=test.conf --base-directory=/opt/corda/nodes/test``).
|
|
|
|
|
|
|
|
You can increase the amount of Java heap memory available to the node using the ``-Xmx`` command line argument. For
|
|
|
|
example, the following would run the node with a heap size of 2048MB:
|
|
|
|
|
|
|
|
.. code-block:: shell
|
|
|
|
|
2017-11-30 11:13:16 +00:00
|
|
|
java -Xmx2048m -jar corda.jar
|
2017-11-30 10:38:06 +00:00
|
|
|
|
|
|
|
You should do this if you receive an ``OutOfMemoryError`` exception when interacting with the node.
|
2016-08-23 10:25:06 +01:00
|
|
|
|
2017-11-29 17:07:13 +00:00
|
|
|
Optionally run the node's webserver as well by opening a terminal window in the node's folder and running:
|
|
|
|
|
|
|
|
.. code-block:: shell
|
2016-08-31 09:48:19 +01:00
|
|
|
|
2017-11-29 17:07:13 +00:00
|
|
|
java -jar corda-webserver.jar
|
2016-08-31 09:48:19 +01:00
|
|
|
|
2017-11-29 17:07:13 +00:00
|
|
|
.. warning:: The node webserver is for testing purposes only and will be removed soon.
|
2016-08-31 09:48:19 +01:00
|
|
|
|
2018-07-04 10:41:38 +01:00
|
|
|
Command-line options
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
The node can optionally be started with the following command-line options:
|
|
|
|
|
|
|
|
* ``--base-directory``: The node working directory where all the files are kept (default: ``.``)
|
|
|
|
* ``--bootstrap-raft-cluster``: Bootstraps Raft cluster. The node forms a single node cluster (ignoring otherwise configured peer
|
|
|
|
addresses), acting as a seed for other nodes to join the cluster
|
|
|
|
* ``--config-file``: The path to the config file (default: ``node.conf``)
|
|
|
|
* ``--help``
|
|
|
|
* ``--initial-registration``: Start initial node registration with Corda network to obtain certificate from the permissioning
|
|
|
|
server
|
|
|
|
* ``--just-generate-node-info``: Perform the node start-up task necessary to generate its nodeInfo, save it to disk, then
|
|
|
|
quit
|
|
|
|
* ``--log-to-console``: If set, prints logging to the console as well as to a file
|
|
|
|
* ``--logging-level <[ERROR,WARN,INFO, DEBUG,TRACE]>``: Enable logging at this level and higher (default: INFO)
|
|
|
|
* ``--network-root-truststore``: Network root trust store obtained from network operator
|
|
|
|
* ``--network-root-truststore-password``: Network root trust store password obtained from network operator
|
|
|
|
* ``--no-local-shell``: Do not start the embedded shell locally
|
|
|
|
* ``--sshd``: Enables SSHD server for node administration
|
|
|
|
* ``--version``: Print the version and exit
|
|
|
|
|
2018-03-13 04:03:17 +09:00
|
|
|
Enabling remote debugging
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-07-21 12:33:31 +01:00
|
|
|
To enable remote debugging of the node, run the following from the terminal window:
|
2016-08-31 09:48:19 +01:00
|
|
|
|
|
|
|
``java -Dcapsule.jvm.args="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005" -jar corda.jar``
|
|
|
|
|
|
|
|
This command line will start the debugger on port 5005 and pause the process awaiting debugger attachment.
|
2018-03-13 04:03:17 +09:00
|
|
|
|
2018-07-04 10:41:38 +01:00
|
|
|
Starting all nodes at once from the command line
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
Native
|
|
|
|
~~~~~~
|
2018-03-13 04:03:17 +09:00
|
|
|
If you created your nodes using ``deployNodes``, a ``runnodes`` shell script (or batch file on Windows) will have been
|
|
|
|
generated to allow you to quickly start up all nodes and their webservers. ``runnodes`` should only be used for testing
|
|
|
|
purposes.
|
|
|
|
|
|
|
|
Start the nodes with ``runnodes`` by running the following command from the root of the project:
|
|
|
|
|
|
|
|
* Linux/macOS: ``build/nodes/runnodes``
|
|
|
|
* Windows: ``call build\nodes\runnodes.bat``
|
|
|
|
|
|
|
|
.. warning:: On macOS, do not click/change focus until all the node terminal windows have opened, or some processes may
|
|
|
|
fail to start.
|
|
|
|
|
|
|
|
If you receive an ``OutOfMemoryError`` exception when interacting with the nodes, you need to increase the amount of
|
|
|
|
Java heap memory available to them, which you can do when running them individually. See
|
|
|
|
:ref:`starting-an-individual-corda-node`.
|
2018-05-04 10:22:03 +01:00
|
|
|
|
2018-07-04 10:41:38 +01:00
|
|
|
docker-compose
|
|
|
|
~~~~~~~~~~~~~~
|
2018-05-04 10:22:03 +01:00
|
|
|
If you created your nodes using ``Dockerform``, the ``docker-compose.yml`` file and corresponding ``Dockerfile`` for
|
|
|
|
nodes has been created and configured appropriately. Navigate to ``build/nodes`` directory and run ``docker-compose up``
|
|
|
|
command. This will startup nodes inside new, internal network.
|
|
|
|
After the nodes are started up, you can use ``docker ps`` command to see how the ports are mapped.
|
|
|
|
|
|
|
|
.. warning:: You need both ``Docker`` and ``docker-compose`` installed and enabled to use this method. Docker CE
|
|
|
|
(Community Edition) is enough. Please refer to `Docker CE documentation <https://www.docker.com/community-edition>`_
|
|
|
|
and `Docker Compose documentation <https://docs.docker.com/compose/install/>`_ for installation instructions for all
|
|
|
|
major operating systems.
|