Need help with other JFrog products?
JFrog Platform
JFrog Artifactory
JFrog Xray
JFrog Mission Control
JFrog Distribution
[JFrog Pipelines]
JFrog Access
The following sections describe the commands available in the JFrog CLI for use with JFrog Mission Control.
Command name | jpd-add |
Abbreviation | ja |
Description | Adds a JPD to Mission Control |
Command arguments | |
Config | Path to a JSON configuration file containing the JPD details. |
Command options | The command accepts no options, other than the global options. |
{ "name" : "jpd-0", "url" : "http://jpd:8080/test", "token" : "some-token", "location" : { "city_name" : "San Francisco", "country_code" : "US", "latitude" : 37.7749, "longitude" : 122.4194 }, "tags" : [ "tag0", "tag1" ] }
Example
jf mc ja path/to/jpd/config.json
Command name | jpd-delete |
Abbreviation | jd |
Description | Delete a JPD from Mission Control. |
Command arguments | |
JPD ID | The ID of the JPD to be removed from Mission Control. |
Command options | The command accepts no options, other than the global options. |
Example
jf mc jd my-jpd-id
Command name | license-acquire |
Abbreviation | la |
Description | Acquire a license from the specified bucket and mark it as taken by the provided name. |
Command arguments | |
Bucket ID | Bucket name or identifier to acquire license from. |
Name | A custom name used to mark the license as taken. Can be a JPD ID or a temporary name. If the license does not end up being used by a JPD, this is the name that should be used to release the license. |
Command options | The command accepts no options, other than the global options. |
Examples
Assign a license from the my-bucket-id and mark it as taken by my-unique-name.
jf mc la my-bucket-id my-unique-name
Command name | license-deploy |
Abbreviation | ld |
Description | pecified bucket to an existing JPD. You may also deploy a number of licenses to an Artifactory HA. |
Command arguments | |
Bucket ID | Bucket name or identifier to deploy licenses from. |
JPD ID | An existing JPD's ID. |
Command options | |
--license-count | [Default: 1] The number of licenses to deploy. Minimum value is 1. |
Example
Deploy a single license from my-bucket-id on my-jpd-id.
jf mc ld my-bucket-id my-jpd-id
Command name | license-release |
Abbreviation | lr |
Description | Release all licenses of a JPD and return them to the specified bucket. |
Command arguments | |
Bucket ID | Bucket name or identifier to release all of its licenses. |
JPD ID | If the license is used by a JPD, pass the JPD's ID. If the license was only acquired but is not used, pass the name it was acquired with. |
Command options | The command accepts no options, other than the global options. |
Example
Releases all licenses of my-jpd-id to to my-bucket-id.
jf mc lr my-bucket-id my-jpd-id