...
Code Block |
---|
sed -i 's/%tstamp/%d/g' /flexvdi/external/manager/logger.xml systemctl restart flexvdi-manager |
Q: How can I monitor if flexVDI manager or a flexVDI gateway is up and running, and I have network connectivity to its port?
A: You can run the following command against the server, and see if you receive a valid json response like the example:
Code Block |
---|
$ curl -k -H "Content-Type: application/json" --data '{"hwaddress":"1234-5678-90"}' https://${FLEXVDI_MANAGER}/vdi/authmode
{"status":"OK","auth_mode":"active_directory"}
|