This repository was archived by the owner on Apr 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +28
-6
lines changed
Expand file tree Collapse file tree 1 file changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,34 @@ You can start mongodb by running the `mongod` script on your project root:<br/>
3131
3232### MongoDB parameters used:
3333
34- | Parameter | Description |
35- | ------------------------------ | ----------------------------------------------------------------------------------------------- |
36- | ` --dbpath=data ` | Because it defaults to /var/db which isn't accessible) |
37- | ` --nojournal ` | Because mongodb usually pre-allocates 2 GB journal file (which exceeds Cloud9 disk space quota) |
38- | ` --bind_ip=$IP ` | Because you can't bind to 0.0.0.0) |
39- | ` --rest ` | Runs on default port 28017 |
34+ <div markdown =" 1 " >
35+ <table class =" table table-striped table-bordered " >
36+ <thead>
37+ <tr>
38+ <th>Parameter</td>
39+ <th>Description</td>
40+ </tr>
41+ </thead>
42+ <tbody>
43+ <tr>
44+ <td>--dbpath=data</td>
45+ <td>Because it defaults to /var/db which isn't accessible)</td>
46+ </tr>
47+ <tr>
48+ <td>--nojournal</td>
49+ <td>Because mongodb usually pre-allocates 2 GB journal file (which exceeds Cloud9 disk space quota)</td>
50+ </tr>
51+ <tr>
52+ <td>--bind_ip=$IP</td>
53+ <td>Because you can't bind to 0.0.0.0)</td>
54+ </tr>
55+ <tr>
56+ <td>--rest</td>
57+ <td>Runs on default port 28017</td>
58+ </tr>
59+ </tbody>
60+ </table >
61+ </div >
4062
4163## Drivers
4264
You can’t perform that action at this time.
0 commit comments