Insight Agent Controls
Available configurations
The Insight Agent has several configuration commands that enable you to install the Insight Agents according to the specific needs of your organization.
Installer option (Windows) | Configuration option (Mac and Linux) | Description |
---|---|---|
CUSTOMTOKEN | –token | Install the Insight Agent using your organization’s unique token displayed in the Insight Agent download panel. |
CUSTOMCONFIGPATH | --certificate_package_installation | Specify the absolute path where the contents of your organization's certificate package reside, if not using a token. |
CUSTOMATTRIBUTES | --attributes | Set custom attributes that InsightVM will import as asset tags. |
HTTPS_PROXY | --https-proxy | Specify the proxy IP address and port preferred for Agent-to-Platform communication. |
DISABLE-UPDATES | --disable-updates | Disable Insight Platform updates for all Insight Agent subcomponents. |
You can also execute the following operations on the Insight Agent to perform several functions. The commands listed here are categorized according to the operating system of the asset.
Windows
Open a command prompt to execute the following commands:
Start the agent
1sc start ir_agent
Stop the agent
1sc stop ir_agent
Windows Service Manager
You can also start, stop, and check the status of the Insight Agent service from the Windows Service Manager. To access the Service Manager, run services.msc
in the command line.
Check the version number
- Navigate to the version directory using the command line:
1cd C:\Program Files\Rapid7\Insight Agent\components\insight_agent\<version directory>
- Run the following command to check the version:
1ir_agent.exe --version
Alternatively, browse to the "Rapid7 Insight Agent" from your Start menu and check its properties.
Reinstall the agent
If you need to reinstall the agent for any reason and want to avoid the step of uninstalling first, you can do so by running the .msi
from the command line.
Substitute <installerType>
with x86_64
for most Windows architectures, or arm64
for Windows ARM64:
1msiexec /i agentInstaller-<installerType>.msi /l*v insight_agent_install_log.log /quiet CUSTOMTOKEN=<region>:<token> REINSTALL=ALL REINSTALLMODE=vamus
Maintaining the existing UUID of the agent
Maintaining the existing UUID ensures there are no agent duplicates in your environment.
As long as the agent is already on version 2.0 or later, reinstalling in this way ensures that its previously existing UUID will remain in use as long as the C:\Program Files\Rapid7\Insight Agent\components\bootstrap\common\bootstrap.cfg
file is present at the time of reinstallation.
If you want a reinstalled agent to get a new UUID, uninstall the existing agent and completely remove the agent directory first before running the installer again.
Note that reinstalls of any agent running a version prior to 2.0 will not retain their original UUID.
Uninstall the agent
Browse to the "Rapid7 Insight Agent" from your Start menu, right click the agent icon, and select "Uninstall". You can also run the installer and select the Remove option.
Mac (.pkg)
Open a command prompt to execute the following commands:
Check the bootstrap sub-component of the Insight Agent is running (.pkg):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.log | grep 'Component Info bootstrap:'
Check the current version running and PIDs (.pkg):
1sudo ps -ax | grep ir_agent
Check the Insight Agent ID (.pkg):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.cfg
Uninstall (.pkg):
1/opt/rapid7/ir_agent/components/insight_agent/{version}/uninstall.sh
Linux
Installation permissions
To run the commands listed in this article, you will require sudo
permissions.
Service commands for Linux installations depend on the init
system. Inspect /sbin/init
to determine if your system is using systemd or sysV.
systemd
-init
is a symbolic link to/lib/systemd/systemd
sysV
-init
is a real executable
systemd commands
Function | Linux Agent Control |
---|---|
Start | systemctl start ir_agent.service |
Stop | systemctl stop ir_agent.service |
Status | systemctl status ir_agent.service |
Example systemd command output
1systemctl status ir_agent23● ir_agent.service - Rapid7 Insight Agent4Loaded: loaded (/etc/systemd/system/ir_agent.service; enabled; vendor preset: enabled)5Active: active (running) since Tue 2024-09-24 08:52:24 PDT; 3s ago6Main PID: 3541425 (ir_agent)7Tasks: 32 (limit: 19119)8Memory: 72.99CGroup: /system.slice/ir_agent.service10├─3541425 /opt/rapid7/ir_agent/ir_agent11├─3541445 /opt/rapid7/ir_agent/components/endpoint_broker/1.7.1.0/rapid7_endpoint_broker12├─3541446 /opt/rapid7/ir_agent/components/insight_agent/4.0.4.14/ir_agent13└─3541458 /opt/rapid7/ir_agent/components/insight_agent/4.0.4.14/ir_agent -S -E -c from multiprocessing.resource_tracker impor>1415Sep 24 08:52:24 test systemd[1]: Started Rapid7 Insight Agent.
sysV commands
Function | Linux Agent Control |
---|---|
Start | service ir_agent start |
Stop | service ir_agent stop |
Status | service ir_agent status |
Example sysV command output
1root@test:~# service ir_agent status23● ir_agent.service - Rapid7 Insight Agent4Loaded: loaded (/etc/systemd/system/ir_agent.service; enabled; vendor preset: enabled)5Active: active (running) since Tue 2024-09-24 08:52:24 PDT; 14min ago6Main PID: 3541425 (ir_agent)7Tasks: 57 (limit: 19119)8Memory: 139.7M9CGroup: /system.slice/ir_agent.service10├─3541425 /opt/rapid7/ir_agent/ir_agent11├─3541445 /opt/rapid7/ir_agent/components/endpoint_broker/1.7.1.0/rapid7_endpoint_broker12├─3541446 /opt/rapid7/ir_agent/components/insight_agent/4.0.4.14/ir_agent13├─3541458 /opt/rapid7/ir_agent/components/insight_agent/4.0.4.14/ir_agent -S -E -c from multiprocessing.resource_tracker import mai>14└─3541546 /opt/rapid7/ir_agent/components/insight_agent/4.0.4.14/ir_agent --multiprocessing-fork tracker_fd=10 pipe_handle=201516Sep 24 08:52:24 test systemd[1]: Started Rapid7 Insight Agent.
Linux (.rpm)
Open a command prompt to execute the following commands:
Check the bootstrap sub-component of the Insight Agent is running (.rpm):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.log | grep 'Component Info bootstrap:'
Check the current version running and PIDs (.rpm):
1sudo ps -ax | grep ir_agent
Check the Insight Agent ID (.rpm):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.cfg
Uninstall (.rpm):
1dnf remove rapid7-insight-agent
Linux (.deb)
Open a command prompt to execute the following commands:
Check the bootstrap sub-component of the Insight Agent is running (.deb):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.log | grep 'Component Info bootstrap:'
Check the current version running and PIDs (.deb):
1sudo ps -ax | grep ir_agent
Check the Insight Agent ID (.deb):
1sudo cat /opt/rapid7/ir_agent/components/bootstrap/common/bootstrap.cfg
Uninstall (.deb):
1sudo apt remove rapid7-insight-agent