Connect to Existing Instance
Before You Start #
- Obtain the URL or External IP address of the HPE Machine Learning Inferencing Software platform instance you want to connect to.
- Ensure that you have a
username
andpassword
to log in to the platform. - Complete the Developer System Setup steps if you intend to use the CLI.
How to Connect to an Existing Instance #
Via the UI #
- Open a browser tab and input the URL provided by your administrator.
- Input your username and password.
Via the CLI #
Via the API #
- Open a terminal.
- Use the following cURL command to log in to the platform:
curl -X 'POST' \ '<YOUR_EXT_CLUSTER_IP>/api/v1/login' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "username": "<YOUR_USERNAME>", "password": "<YOUR_PASSWORD>" }'
- Obtain the Bearer token from the response.
- Use the Bearer token to perform other future API operations.