cec config add

Configure a new connection to a running server and persist credentials locally

Synopsis

DESCRIPTION

Launch an interactive process to configure a connection to a running Cells server. By default, we use a secure OAuth2 process based on 'Authorization Code' Grant.

If necessary, you might use an alternative authorization process and/or execute this process non-interactively calling one of the defined sub-commands.

Once a connection with the server is established, it stores necessary information locally, keeping the sensitive bits encrypted in the client machine keyring. If you want to forget a connection, the config file and keyring can be cleant out by calling the 'config rm' subcommand.

WARNING

If no keyring is defined in the client machine, all information is stored in clear text in a config file of the working directory.

./cec config add [flags]

Options

  -h, --help   help for add

Options inherited from parent commands

      --config string     Location of Cells Client's config files (default: /home/teamcity/.config/pydio/cells-client/config.json)
      --login string      The user login, for Client auth only
      --no_cache          Force token refresh at each call. This might slow down scripts with many calls
      --password string   The user password, for Client auth only
      --skip_keyring      Explicitly tell the tool to *NOT* try to use a keyring, even if present. Warning: sensitive information will be stored in clear text
      --skip_verify       By default the Cells Client verifies the validity of TLS certificates for each communication. This option skips TLS certificate verification
  -t, --token string      A valid Personal Access Token (PAT)
  -u, --url string        The full URL of the target server

SEE ALSO

Auto generated by Cells Client v4.1.0 on 21-Feb-2024
Back to top