You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`FaasNet.EventMeshCTL.CLI.exe` is the CLI tool that ships with EventMeshServer. It supports a wide range of operations, mostly administrative in nature.
This guide describes how EventMesh server can be installed and configured manually on Windows.
4
+
5
+
## Download zip
6
+
7
+
Download the zip file [EventMeshServer.zip](TODO) and extract its content into a new directory.
8
+
9
+
## Deploy the windows service
10
+
11
+
As an administrator, open a command prompt and execute the following command. The parameter `$result_dir` must be replaced by the full path of the new directory.
12
+
The windows account used to run the windows service must have READ and WRITE access to this new directory otherwise the key-value storage cannot be created.
EventMesh server supports plugins. Plugins extend core functionality in a variety of ways:
4
+
* Support more protocols.
5
+
* Support more sink connectors. A sink connector consumes records from an event store or message broker and stream the data events to the EventMesh server.
6
+
7
+
## Install a plugin
8
+
9
+
A plugin can manually be installed :
10
+
1. Download the zip file.
11
+
2. Extract its content.
12
+
3. Based on the nature of the plugin, move the folder into the appropriate sub-folder of the local EventMesh server.
13
+
* If the plugin supports an additional protocol then the sub-folder is `protocolPlugins`.
14
+
* If the plugin supports a new sink connector then the sub-folder is `sinkPlugins`.
15
+
16
+
## Enable a plugin
17
+
18
+
Once the plugin is installed, open a command prompt and execute the command `FaasNet.EventMeshCTL.CLI.exe enable_plugin -n=<PLUGIN_NAME>` to enable the plugin.
19
+
20
+
If the plugin is successfully enabled then a success message is displayed.
21
+
22
+
The EventMesh server must be restarted to take into consideration the new activated plugins.
0 commit comments