Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View thecurrent version.

Compare with CurrentView Page History

« PreviousVersion 16下一个”

Overview

This page describes how to use JFrog CLI with JFrog Mission Control.

Read more about JFrog CLIhere.

Syntax

$ jfrog mc command-name arguments global-options command-options

地点:

command-name
The command to execute. Note that you can use either the full command name or its abbreviation.
global-options

A set of global options that may be used for all commands:

--url:(Optional) Mission Control URL.

--access-token:(Optional) Mission Control admin access token.

Use the config command

To avoid having to set these for every command, you may set them once using theconfigcommand and then omit them for every following command.

command-options
A set of options corresponding to the command
arguments
A set of arguments corresponding to the command


Page Contents



Commands

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.


Adding a JPD

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.

Config JSON schema


{ "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

Removing a service

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]
When true, skips the default confirmation message.

Example

jfrogmc s remove my-arti --quiet=true

Attaching a License

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]
Theid or nameof the bucket from which the license should be provisioned.

--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-pathparameter.
--deploy

[Default: false]

When true, installs the license in the Artifactory service

Examples

Example 1

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
Example 2

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"

Detaching a License

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]
The id of the license-bucket from which the license should be provisioned.

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

Example 1

Configure the Mission Control URL, user and password using the interactive prompt.

$ jfrog mc c
Example 2

Configure the Mission Control URL, user and password by passing them in as command options.

$ jfrog mc c --url=http:// --user=admin --password=password
Example 3

Show, and then clear the configuration details.

$ jfrog mc c show $ jfrog mc c clear







  • No labels