blob: 13c14f0d7f50e68701856e190aa3bedf08db4d69 [file] [log] [blame]
### Start PredictionIO and Dependent Services
Simply do `bin/pio-start-all` and you should see something similar to the
following:
```
$ bin/pio-start-all
Starting Elasticsearch...
Starting HBase...
starting master, logging to /home/abc/<%= data.versions.hbase_basename %>-<%= data.versions.hbase_dir_suffix %>/bin/../logs/hbase-abc-master-yourhost.local.out
Waiting 10 seconds for HBase to fully initialize...
Starting PredictionIO Event Server...
$
```
You may use `jps` to verify that you have everything started:
```
$ jps -l
15344 org.apache.hadoop.hbase.master.HMaster
15409 io.prediction.tools.console.Console
15256 org.elasticsearch.bootstrap.Elasticsearch
15469 sun.tools.jps.Jps
$
```
A running setup will have these up and running:
- io.prediction.tools.console.Console
- org.apache.hadoop.hbase.master.HMaster
- org.elasticsearch.bootstrap.Elasticsearch
At any time, you can run `pio status` to check the status of the dependencies.