Using the respective package managers, this method will install the Steadybit agent on your Linux machine. By default, it will install the agent as well as the extensions extension-http, extension-container, and extension-host.
- apt
- dnf
- yum
To install the agent, you must be able to access the following URLs via HTTPS (443) on your target environment:
- https://platform.steadybit.com (Platform)
- https://packages.steadybit.com with redirect to https://europe-west1-yum.pkg.dev and europe-west1-apt.pkg.dev (.deb and .rpm packages)
- https://get.steadybit.com (Setup Scripts)
To install the agent on your Linux system, copy the installation script from the SaaS platform's setup page.
Alternatively, you can update and run the script below with your agent key, which you find on the platform's setup page:
wget https://get.steadybit.com/agent-linux.sh
chmod a+x agent-linux.sh
./agent-linux.sh --key <agent-key>
Parameter | Description | Default |
---|---|---|
--key |
The API key the agent uses | |
--extensions |
The extensions to install | steadybit-extension-host,steadybit-extension-container,steadybit-extension-http |
--platform-url |
If running on-prem, the URL of your platform installation | https://platform.steadybit.com |
--version |
Override the used package version |
{% hint style="info" %} The package repositories have a pull limit. If you're installing the packages on a large number of servers, please consider using a mirror repository.
The Steadybit Agent uses HTTP and WebSockets to communicate with the platform and to download updates. To simplify the agent deployment, consider allowing direct communication to our platform.
If you require a single entry into and out of your network, you can configure the agent to use a proxy:
- Edit
/etc/steadybit/agent
and set the values for these variables:
STEADYBIT_AGENT_PROXY_HOST="<hostname or address of your proxy>"
STEADYBIT_AGENT_PROXY_PORT="<port of your proxy>"
STEADYBIT_AGENT_PROXY_PROTOCOL="<proxy protocol e.g. http>"
STEADYBIT_AGENT_PROXY_USER="<username of the proxy (if needed)>"
STEADYBIT_AGENT_PROXY_PASSWORD="<password of the proxy (if needed)>"
- Restart the service
When using systemd
systemctl daemon-reload && systemctl restart steadybit-agent
When using InitV
service steadybit-agent restart
For Linux installations, the docker runtime is auto-configured by the extension by looking at the system paths.
If this is incorrectly auto-configured, it can be set in /etc/steadybit/extension-container
using STEADYBIT_EXTENSION_CONTAINER_SOCKET
and STEADYBIT_EXTENSION_CONTAINER_RUNTIME
.
If you have installed docker just before, etc., please restart your host or the needed services.
The logs for agent and extensions are located in /var/log/steadybit-*.log
The configurations for agent and extensions are located in /etc/steadybit
When using systemd
systemctl start steadybit-agent
systemctl stop steadybit-agent
systemctl restart steadybit-agent
When using InitV
service steadybit-agent start
service steadybit-agent stop
service steadybit-agent restart
The same applies to extensions. The services are named steadybit-extension-*
.
Remove the packages using the package manager:
apt-get remove --purge steadybit-agent \
steadybit-extension-http \
steadybit-extension-container \
steadybit-extension-host
Or when using yum:
yum remove steadybit-agent \
steadybit-extension-http \
steadybit-extension-container \
steadybit-extension-host
If you want to use additional extensions (e.g. extension-jvm for attacking Java applications), you can apply the --extensions
parameter.
./agent-linux.sh --key <agent-key> --extensions steadybit-extension-host,steadybit-extension-container,steadybit-extension-http,steadybit-extension-jvm
By default, the agent-linux.sh
installs the agent and extension on a single host.
When installed on multiple hosts, each runs an agent instance, allocating many resources. It is possible to install the agent on a dedicated host and only the container and host extension on each host.
- Install only container and host extensions by using
--no-agent
flag
./agent-linux.sh --key <agent-key> --no-agent --extensions steadybit-extension-host,steadybit-extension-container
- Reconfigure the extension to listen on http by editing
/etc/steadybit/extension-container
and/etc/steadybit/extension-host
and removing theSTEADYBIT_EXTENSION_UNIX_SOCKET=...
line.
If you want to override the default port, setSTEADYBIT_EXTENSION_PORT
. - Restart the extensions
systemctl restart steadybit-extension-container
systemctl restart steadybit-extension-host
- Install the Agent as usual
- For each extension running on a different host, create a
/etc/steadybit/extensions.d/extension-*.yaml
to configure the remote-located extensions
{% code title="/etc/steadybit/extensions.d/extension-container-172-31-16-248.yaml" %}
url: http://172.31.16.248:8085 # replace with your host
types:
- ACTION
- DISCOVERY
{% endcode %}