End-of-Life (EoL)
Set up a fresh Console
After first installing Prisma Cloud Console, you must create an initial admin user and set up your license.
The Prisma Cloud API provides endpoints to complete the set up of a fresh Console install.
Creating your first admin user
After Console is first installed, you must create the first admin user.
To do this, use the /api/v1/signup endpoint.
The following example curl command creates the initial admin user named butterbean.
$ curl -k \ -H 'Content-Type: application/json' \ -X POST \ -d '{"username": "butterbean", "password": "<PASSWORD>"}' \ https://<CONSOLE>:8083/api/v1/signup
The signup process can only be executed once, whether from the Console UI or the API.
Calling this endpoint after the initial sign up has been completed results in a 400 error response.
Setting up your license
Console isn’t functional until you provide your license key.
The Prisma Cloud API provides an endpoint for setting up your license.
In this procedure, you access the Prisma Cloud API using an auth token.
You could also access the API using basic authentication.
For more information, see Access the API.
Prisma Cloud provides a single license that protects a specific number of nodes.
The number of nodes covered depends on your subscription.
You can use the same license to install multiple instances of Console.
There is need to get a new license when building out new environments with Prisma Cloud.
For example, if you have licensed 100 nodes and you have deployed to 10 separate tenants, each with its own Console, use the same license key for each instance of Console.
- Get an auth token.$ curl -H "Content-Type: application/json" \ -d '{"username":"admin", "password":"admin"}' \ http://localhost:8081/api/v1/authenticate { "token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..." }Set environment variables for your auth token and license key.$ echo $LICENSE_KEY {"key":"your license key here"}$ echo $TOKEN eyJ0eXAiOiJK...Execute the command referencing these vars to set the license.$ curl -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d $LICENSE_KEY \ http://localhost:8081/api/v1/settings/licenseThe result should be 200 OK with an empty body "{}".
Most Popular
Recommended For You
Recommended Videos
Recommended videos not found.