Installation
Server
Docker
The server is shipped as a Docker image. To install the Flopsar server, you only need to execute the command or use docker-compose.yml
file:
This will create a new container and start the server. By default, the server listens on two ports: 9000 and 9443. The first port is used by agents and the second one by workstations.
It is recommended to attach a volume for the server data. You can do this by executing the command:
By default, the server uses /opt/flopsar
for its data directory. This can be changed by setting the FLOPSAR_HOME
environment variable, e.g.:
Standalone
To install the server manually, follow the instructions below:
download the Swift runtime
unpack the Swift binaries into the system root directory:
$ sudo tar xzvf <SWIFT.TAR.GZ> -C / --strip=1
copy the
flopsar
binary to your machine
Agent
To install the agent, follow carefully the instructions below:
copy the agent file
flopsar-agent-X.Y.Z.jar
to your server machine.create a directory (we call this directory a Flopsar home directory) and
ext
subdirectory for the agent data.optionally put all your agent plugins into the
ext
directory.restart your application.
When the agent starts for the first time it does not have any profile assigned. It just registers itself to the server after a successful connection, sends its status data, and does not instrument anything nor send any data.
Workstation
Quick Start
To quickly set up and start your environment follow the instructions below:
Download, install the agent, and start your application
Download, install and start the workstation
Log out and log in to the workstation again in normal mode
Last updated