Troubleshooting of the Breeze agent proceeds in the following ways for:
Table of Contents |
---|
Automatic
Linux
Run the troubleshooting script from the Breeze agent directory:
...
Note |
---|
If you do not have the troubleshoot script file in the Breeze agent directory, please update Breeze agent to the latest version from using the installer file Cloudaware Admin Consoleconsole. |
Manual
Linux
1. Check the log file /var/log/breeze-agent.log for errors. It should be empty if everything is working as expected.
...
3. Verify that the Breeze server is responding:
a. telnet
breeze-server.cloudaware.com 443
b. 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
.
...
3. Verify that the Breeze server is responding:
a. CMD
...
telnet
...
breeze-server.cloudaware.com
...
443
b. PowerShell
Launch PowerShell from the Start menu or press Win+R and type "PowerShell". Then run the following command:
Code Block |
---|
[System.Net.WebRequest]::Create("https://breeze-server.cloudaware.com/").GetResponse() | select StatusCode,StatusDescription,ResponseUri | fl |
Tip |
---|
This is a single line command. If the server is reachable, the result will be as |
...
below: RESPOND: |
...
StatusCode |
...
: |
...
OK |
...
StatusDescription |
...
: |
...
OK |
...
...
ResponseUrl: |
...