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.
We strongly recommend running theconfigcommand right after installing the JFrog CLI to avoid having to pass in the Mission Control URL and login credentials for every command.
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. |
命令选项 |
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
jfrogmc ja path/to/jpd/config.json
Command name |
remove |
Description |
Removes a service from Mission Control |
Command arguments |
|
Service name | The name of the service (as defined in Mission Control) to remove. |
命令选项 |
|
--quiet |
[Default: false] |
Example
jfrogmc s remove my-arti --quiet=true
Command name |
attach-lic |
Description |
高度(可选安装)th的许可证e specified service and removes it from the specified license-bucket. |
Command arguments |
|
Artifactory service name | The name of the service to which the license should be attached. |
命令选项 |
|
--bucket-id |
[Mandatory] |
--license-path | [Optional] Specifies the full path to the license file. If not specified, the license is printed to standard output. |
--override | [Default: false] When true, overrides any license file currently existing in the path specified in the--license-path parameter. |
--deploy | [Default: false] When true, installs the license in the Artifactory service |
Examples
Assign a license from the specified bucket to the specified Artifactory service (my-arti). The license is displayed on standard output.
jfrogmc s attach-lic my-arti --bucket-id=abcdefg
Assign and install a license from the specified bucket to the specified Artifactory service (my-arti). The license is saved to a file.
jfrogmc s attach-lic my-arti --deploy=true --bucket-id=abcdefg --license-path="my_license.txt"
Command name |
detach-lic |
Description |
Detaches a license from the specified service and returns it to the specified license-bucket. |
Command arguments |
|
Service name | The name of the service from which the license should be detached |
命令选项 |
|
--bucket-id |
[Mandatory] |
Example
jfrogmc s detach-lic my-arti --bucket-id=license-bucket-1
This command is used to configure the JFrog CLI with the default Mission Control URL and login credentials which should be used in the other commands so that you don't have to pass them in each time. These values are defaults for each command and can be overridden per command by passing in alternative values for the Mission Control URL and login credentials. The values configured are saved in~/.jfrog/jfrog-cli.conf.
Command name |
config |
Abbreviation |
c |
命令选项 |
|
--url | [Optional] The default Mission Control URL to be used for the other commands. |
--user | [Optional] The default user to be used for the other commands. |
--password | [Optional] The default password to be used for the other commands. |
Command arguments |
If no arguments are passed in, the command will configure the Mission Control URL, user and password through the command options or through the interactive prompt |
show | Shows the stored configuration. |
clear | Clears the stored configuration. |
Examples
Configure the Mission Control URL, user and password using the interactive prompt.
$ jfrog mc c
Configure the Mission Control URL, user and password by passing them in as command options.
$ jfrog mc c --url=http://--user=admin --password=password
Show, and then clear the configuration details.
$ jfrog mc c show $ jfrog mc c clear