This documentation is for WSO2 Private PaaS 4.1.0. View documentation for the latest release.
Page Comparison - Validate Stratos Manager URL (v.1 vs v.2) - WSO2 Private PaaS 4.1.0 - WSO2 Documentation

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can validate the Stratos manager URL via the REST API as shown below:

Overview
DescriptionValidate the Stratos Manager URL. This resource is used by clients such as the CLI.
Resource Path/init
HTTP MethodGET
Request/Response Formatapplication/json
Command format
Code Block
curl -X GET -H "Content-Type: application/json" -k -v -u <USERNAME>:<PASSWORD> https://<PRIVATE_PAAS_HOST>:<PRIVATE_PAAS_HTTPS_PORT>/api/init
Info
  • By default, <USERNAME>:<PASSWORD> is  admin:admin .
  • By default, <PRIVATE_PAAS_HOST> is localhost. However, if you are using a public IP, the respective IP address or domain needs to be specified.
  • By default, <PRIVATE_PAAS_HTTPS_PORT> has been set to 9443. However, if the port offset has been incremented by n, the default port value needs to be incremented by n
Example

Validate the Stratos manager URL.

Code Block
curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin https://localhost:9443/api/init

 

Sample output
Code Block
> GET /api/init HTTP/1.1
> Host: localhost:9443
> Authorization: Basic YWRtaW46YWRtaW4=
> User-Agent: curl/7.43.0
> Accept: */*
> Content-Type: application/json
> 
< HTTP/1.1 200 OK
< Date: Mon, 19 Oct 2015 08:35:06 GMT
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: WSO2 Carbon Server
< 
{"status":"success","message":"Successfully authenticated"}

You will come across the following HTTP status codes while validating the Stratos Manager URL:

HTTP status code

200, 404, 500

See the descriptions of the HTTP status codes here.

 

...