Chaski Confluent: Scripts¶
Once Chaski Confluent is installed, a suite of utility scripts become available for managing various services and functionalities.
chaski_remote_proxy¶
The chaski_remote_proxy script is used to start the Chaski Remote Proxy server. This server acts as a mediator to manage remote method invocation across distributed nodes. By using ChaskiRemote, objects can interact transparently with other objects on different network nodes. Start the server by running:
$ chaski_remote_proxy -p <port> -n <name> <modules>
where:
-p <port>specifies the port number (default: 65432)-n <name>specifies the name of the server (default: ChaskiRemote)<modules>is a comma-separated list of the modules available for remote invocation
chaski_streamer_root¶
chaski_streamer_root is a script to start the Chaski Streamer in root mode.To start the root streamer, simply run:
$ chaski_streamer_root
chaski_terminate_connections¶
The chaski_terminate_connections script is used to close active connections on a specified range of ports. It’s useful for cleaning up lingering connections that may interfere with network services. Run the script with the following command:
$ chaski_terminate_connections <start_port>-<end_port>
where:
<start_port>is the beginning of the port range<end_port>is the end of the port range