Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Troubleshooting Breeze agent proceeds in automatic and manual ways:

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
  1. Check the log file /var/log/breeze-agent.log for errors. It should be empty if everything is working as expected.

  2. 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

    1. cd /opt/breeze/agent/etc

    2. open agent.conf file and edit the value of “log_level” parameter as follows

      "log_level" : "1"
    3. run Breeze agent manually or wait for cronjob

      NOTEIf 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).

  3. Verify that the Breeze server is responding:

    1. telnet breeze-server.cloudaware.com 443

    2. curl -v https://breeze-server.cloudaware.com

      NOTEtelnet will only work when direct internet connection is used. If you have proxy connection, please use curl.

Windows
  1. Check the log file C:\Program Files\Breeze\agent.log for errors. It should be empty if everything is working as expected.

  2. 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

    1. go to the agent config directory C:\Program Files\Breeze\etc

    2. open agent.conf file and edit the value of “log_level” parameter as follows

      "log_level" : "1"
    3. run Breeze agent manually from Task Scheduler or wait for scheduled task and then check the log file (C:\Program Files\Breeze\agent.log).

  3. Verify that the Breeze server is responding:

    1. CMD

      telnet breeze-server.cloudaware.com 443
    2. 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

      NOTEThis 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/

  • No labels