Troubleshooting
Troubleshoot Breeze Agent automatically first. If the automatic script is unavailable or does not identify the issue, continue with the manual checks.
Automatic Troubleshooting
Linux
Run the troubleshooting script from the Breeze Agent directory:
cd /opt/breeze-agent/
./troubleshoot.sh
Windows
-
Open Command Prompt by pressing
Win+R, enteringcmd, and pressingEnter. -
Run the troubleshooting script from the Breeze Agent directory:
C:\> cd "C:\Program Files\Breeze"C:\Program Files\Breeze> troubleshoot.batnoteIf the troubleshooting script is not available in the Breeze Agent directory, update Breeze Agent to the latest version using the installer file from the Cloudaware Admin console.
Manual Troubleshooting
Linux
-
Check the log file for errors:
/var/log/breeze-agent.logThe log file should be empty if Breeze Agent is working as expected.
-
If the log file is empty, set the
log_levelparameter in the agent configuration file to1to increase Breeze Agent output verbosity.-
2.1. Go to the agent configuration directory:
cd /opt/breeze/agent/etc -
2.2. Open
agent.confand setlog_levelto1:"log_level": "1" -
2.3. Run Breeze Agent manually or wait for the cron job.
noteIf Breeze Agent runs manually, log data is printed to
STDOUT. If Breeze Agent runs by cron job, log data is printed to/var/log/breeze-agent.log. -
-
Verify that the Breeze server is responding:
-
3.1. Test the direct connection:
telnet breeze-server.cloudaware.com 443 -
3.2. Test the HTTPS connection:
curl -v https://breeze-server.cloudaware.com
notetelnetworks only when a direct internet connection is used. If the environment uses a proxy connection, usecurl. -
Windows
-
Check the log file for errors:
C:\Program Files\Breeze\agent.logThe log file should be empty if Breeze Agent is working as expected.
-
If the log file is empty, set the
log_levelparameter in the agent configuration file to1to increase Breeze Agent output verbosity.-
2.1. Go to the agent configuration directory:
C:\> cd "C:\Program Files\Breeze\etc" -
2.2. Open
agent.confand setlog_levelto1:"log_level": "1" -
2.3. Run Breeze Agent manually from Task Scheduler or wait for the scheduled task, then check
C:\Program Files\Breeze\agent.log.
-
-
Verify that the Breeze server is responding.
-
3.1. In Command Prompt, run:
telnet breeze-server.cloudaware.com 443 -
3.2. In PowerShell, run:
[System.Net.WebRequest]::Create("https://breeze-server.cloudaware.com/").GetResponse() | Select-Object StatusCode,StatusDescription,ResponseUri | Format-List
tipThis is a single line command. If the server is reachable, the result will be as below:
RESPOND:
StatusCode : OK
StatusDescription : OK
ResponseUrl:
https://breeze-server.cloudaware.com/ -