...
If you see an error on the Remote Agents page, the suggestions in this topic can help you determine how to address the problem.
Determine Whether the Remote Agent is Currently Running
Unix
Run this command:
systemctl | grep running | grep logichub-remote-agent
If the command doesn't generate any output, it means that the remote agent isn't running. To start the remote agent again, run this command:
./install_and_run.sh
Windows
- Open Services.
- Find Logichub Remote Agent.
- Check whether the status is 'Running'.
- If the agent isn't running, start it. Open Windows PowerShell, go to the folder where the remote agent was downloaded, and restart the agent using the following commands.
cd <download location>
./remote-agent --startup=auto install
./remote-agent start
Remote agent not set up to start on reboot
Unix
Run this command:
systemctl list-unit-files | grep enabled | grep logichub-remote-agent
...
systemctl enable --now logichub-remote-agent.service
Windows
- Open Services.
- Find Logichub Remote Agent.
- Check whether the startup type is Automatic.
- If the startup type isn't Automatic, open Windows PowerShell, go to the folder where the remote agent was downloaded, and set the startup option to
auto install
.
cd <download location>
./remote-agent_latest --startup=auto install
If the agent isn't already started, run the following command.
./remote-agent_latest start
Remote Agent Isn't Able to Connect
Do the following for Unix and Windows,
...