1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

updates based on RI changes to README

This commit is contained in:
Ginger Collison 2021-02-05 14:59:41 -06:00 committed by GitHub
parent 56a90151bd
commit df06f33871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,13 @@
## Administration and Usage from the CLI ## Administration and Usage from the CLI
Once the server is running it's time to use the management tool. This can be downloaded from the [GitHub Release Page](https://github.com/nats-io/jetstream/releases/) or you can use the `synadia/jsm:latest` docker image. Once the server is running it's time to use the management tool. This can be downloaded from the [GitHub Release Page](https://github.com/nats-io/natscli/releases/) or you can use the `synadia/jsm:latest` docker image. On OS X homebrew can be used to install the latest version:
``` ```nohighlight
$ brew tap nats-io/nats-tools
$ brew install nats-io/nats-tools/nats
$ nats --help $ nats --help
usage: nats [<flags>] <command> [<args> ...] usage: nats [<flags>] <command> [<args> ...]
NATS Management Utility NATS Utility
Flags: Flags:
--help Show context-sensitive help (also try --help-long and --help-man). --help Show context-sensitive help (also try --help-long and --help-man).
@ -27,4 +29,4 @@ We'll walk through the above scenario and introduce features of the CLI and of J
Throughout this example, we'll show other commands like `nats pub` and `nats sub` to interact with the system. These are normal existing core NATS commands and JetStream is fully usable by only using core NATS. Throughout this example, we'll show other commands like `nats pub` and `nats sub` to interact with the system. These are normal existing core NATS commands and JetStream is fully usable by only using core NATS.
We'll touch on some additional features but please review the section on the design model to understand all possible permutations. We'll touch on some additional features but please review the section on the design model to understand all possible permutations.