Troubleshooting the Breeze agent proceeds in the following ways for:
Automatic
Linux
Run the troubleshooting script from the Breeze agent directory:
# cd /opt/breeze-agent/ # ./troubleshoot.sh
Windows
1. Open command-line (Win+R → cmd)
2. Run the troubleshooting script from the Breeze agent directory:
C:\> cd C:\Program Files\Breeze\ C:\Program Files\Breeze> troubleshoot.bat
If you do not have the troubleshoot script file in the Breeze agent directory, please update Breeze agent to the last version from Cloudaware Admin Console.
Manual
Linux
Check the log file/var/log/breeze-agent.log for errors. It should be empty if everything is working as expected.
If the log file is empty, set the value of "log_level" parameter in the agent config file to “1” to increase the output verbosity level of Breeze agent
cd /opt/breeze/agent/etc
open agent.conf file and edit the value of ''log_level'' parameter as follows
"log_level" : "1"
run Breeze agent manually or wait for cronjob
If the agent runs manually, the log data will be printed to STDOUT. If the agent runs by the cronjob, the log data will be printed to log file (/var/log/breeze-agent.log).
Verify that the Breeze server is responding:
telnet breeze-server.cloudaware.com 443
curl -v https://breeze-server.cloudaware.com
telnet will only work when direct internet connection is used. If you have proxy connection, please use curl.
Windows
Check the log file C:\Program Files\Breeze\agent.log for errors. It should be empty if everything is working as expected.
If the log file is empty, set the value of "log_level" parameter in the agent config file to "1" to increase the output verbosity level of Breeze agent:
go to the agent config directory C:\Program Files\Breeze\etc
open agent.conf file and edit the value of "log_level" parameter as follows
"log_level" : "1"
run Breeze agent manually from Task Scheduler or wait for scheduled task and then check the log file (C:\Program Files\Breeze\agent.log).
Verify that the Breeze server is responding:
CMD
telnet breeze-server.cloudaware.com 443
PowerShell
Launch PowerShell from the Start menu or press Win+R and type "PowerShell". Then run the following command:
[System.Net.WebRequest]::Create("https://breeze-server.cloudaware.com/").GetResponse() | select StatusCode,StatusDescription,ResponseUri | fl
This is a single line command. If the server is reachable, the result will be as shown below:
RESPOND:
StatusCode : OK
StatusDescription : OK
ResponseUri : https://breeze-server.cloudaware.com/