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:
...
3. Verify that the Breeze server is responding:
a. CMD
...
telnet
...
...
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: |
...