To start a Striim server
If you installed Striim for evaluation purposes using the .jar installer (as described in Installing Striim for evaluation purposes), run .../Striim/bin/WebConfig
in OS X, .../Striim/bin/WebConfig.sh
in Linux, or .../Striim/bin/WebConfig.exe
in Windows.
If Striim was installed as a service (the first command is required only on the server running Derby, if there is one):
-
In CentOS 6 or Ubuntu 14.04:
sudo start striim-dbms sudo start striim-node
-
In CentOS 7 or Ubuntu 16.04 or later:
sudo systemctl start striim-dbms sudo systemctl start striim-node
To start Striim as a process, run .../Striim/bin/server.sh
in OS X or Linux or .../Striim/bin/server.exe
in Windows.
To start a Forwarding Agent
If the agent was installed as a service:
-
In CentOS 6 or Ubuntu 14.04:
sudo start striim-agent
-
In CentOS 7 or Ubuntu 16.04 or later:
sudo systemctl start striim-agent
To start the agent as a process, run .../Agent/bin/server.bat
in Windows or .../Agent/bin/server.sh
in OS X or Linux.
To stop a Striim server
If you started Striim using WebConfig (or by clicking Launch after installing Striim as described in Installing Striim for evaluation purposes), run .../Striim/bin/WebConfig
in OS X, .../Striim/bin/WebConfig.sh
in Linux, or .../Striim/bin/WebConfig.exe
in Windows.
If Striim is running as a service (the second command is required only on the server running Derby, if there is one):
-
In CentOS 6 or Ubuntu 14.04:
sudo stop striim-node sudo stop striim-dbms
-
In CentOS 7 or Ubuntu 16.04 or later:
sudo systemctl stop striim-node sudo systemctl stop striim-dbms
If Striim is running as a process, press Ctrl-C in the terminal running server.bat
or server.sh
.
If the agent is running as a service:
-
In CentOS 6 or Ubuntu 14.04:
sudo stop striim-agent
-
In CentOS 7 or Ubuntu 16.04 or later:
sudo systemctl stop striim-agent
If the agent is running as a process, press Ctrl-C in the terminal running agent.bat
or agent.sh
.
Comments