This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new 7ff0f7c  Fix command syntax to use -a for application name (#190)
7ff0f7c is described below

commit 7ff0f7c0eec7272d15aedf70510a9ba67338ab72
Author: Joseph Koshakow <[email protected]>
AuthorDate: Fri Mar 6 15:33:33 2020 -0500

    Fix command syntax to use -a for application name (#190)
---
 _fluo-1-2/administration/initialize.md          | 4 ++--
 _fluo-1-2/administration/manage-applications.md | 4 ++--
 _fluo-1-2/administration/run-fluo-processes.md  | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/_fluo-1-2/administration/initialize.md 
b/_fluo-1-2/administration/initialize.md
index d048e18..fcc94fd 100644
--- a/_fluo-1-2/administration/initialize.md
+++ b/_fluo-1-2/administration/initialize.md
@@ -53,14 +53,14 @@ initialize an application using Fluo's [Java API][initAPI].
 
 3. Run the command below to initialize your Fluo application. Change `myapp` 
to your application name:
 
-        fluo init myapp /path/to/myapp/fluo-app.properties
+        fluo init -a myapp -p /path/to/myapp/fluo-app.properties
 
    A Fluo application only needs to be initialized once. After initialization, 
the Fluo application
    name is used to start/stop the application and scan the Fluo table.
 
 4. Run `fluo list` which connects to Fluo and lists applications to verify 
initialization.
 
-5. Run `fluo config myapp` to see what configuration is stored in ZooKeeper.
+5. Run `fluo config -a myapp` to see what configuration is stored in ZooKeeper.
 
 ## Next Steps
 
diff --git a/_fluo-1-2/administration/manage-applications.md 
b/_fluo-1-2/administration/manage-applications.md
index c394e5a..b66c473 100644
--- a/_fluo-1-2/administration/manage-applications.md
+++ b/_fluo-1-2/administration/manage-applications.md
@@ -8,8 +8,8 @@ This page contains information on managing Fluo applications.
 
 ## Viewing data
 
-When you have data in your Fluo application, you can view it using the command 
`fluo scan myapp`. 
-Pipe the output to `less` using the command `fluo scan myapp | less` if you 
want to page through the data.
+When you have data in your Fluo application, you can view it using the command 
`fluo scan -a myapp`. 
+Pipe the output to `less` using the command `fluo scan -a myapp | less` if you 
want to page through the data.
 
 ## Get status of all applications
 
diff --git a/_fluo-1-2/administration/run-fluo-processes.md 
b/_fluo-1-2/administration/run-fluo-processes.md
index 6405f01..7d7805f 100644
--- a/_fluo-1-2/administration/run-fluo-processes.md
+++ b/_fluo-1-2/administration/run-fluo-processes.md
@@ -21,9 +21,9 @@ Follow the instructions below to start Fluo processes.
    are typically run with one oracle process and multiple worker processes. 
The commands below will start
    a Fluo oracle and two workers on your local machine:
 
-        fluo oracle myapp &> oracle.log &
-        fluo worker myapp &> worker1.log &
-        fluo worker myapp &> worker2.log &
+        fluo oracle -a myapp &> oracle.log &
+        fluo worker -a myapp &> worker1.log &
+        fluo worker -a myapp &> worker2.log &
 
    The commands will retrieve your application configuration and observer jars 
(using your
    application name) before starting the oracle or worker process.

Reply via email to