mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
RethinkDB advice.
This commit is contained in:
parent
586dd6a4aa
commit
d08a541bd2
2 changed files with 6 additions and 3 deletions
|
@ -164,6 +164,8 @@ If you don't have RethinkDB set up yet, to start it up, go to the folder where y
|
||||||
rethinkdb
|
rethinkdb
|
||||||
```
|
```
|
||||||
|
|
||||||
|
_Note: if it takes a long time for RethinkDB to start up, you may be running into [rethinkdb/rethinkdb#4600](https://github.com/rethinkdb/rethinkdb/issues/4600) (or [rethinkdb/rethinkdb#6047](https://github.com/rethinkdb/rethinkdb/issues/6047)). This usually happens on macOS Sierra. To fix this on macOS, first run `scutil --get HostName` to check if the HostName variable is unset. RethinkDB needs it to generate a server name for your instance. If you find that it's empty, running `sudo scutil --set HostName $(hostname)` has been confirmed to fix the issue on at least one occasion. See the issues for more complete solutions._
|
||||||
|
|
||||||
You should now have RethinkDB running locally. Running the command again in the same folder will reuse the data from the previous session.
|
You should now have RethinkDB running locally. Running the command again in the same folder will reuse the data from the previous session.
|
||||||
|
|
||||||
You're now ready to start up STF itself:
|
You're now ready to start up STF itself:
|
||||||
|
|
|
@ -140,7 +140,8 @@ ExecStart=/usr/bin/docker run --rm \
|
||||||
--net host \
|
--net host \
|
||||||
rethinkdb:2.3 \
|
rethinkdb:2.3 \
|
||||||
rethinkdb --bind all \
|
rethinkdb --bind all \
|
||||||
--cache-size 8192
|
--cache-size 8192 \
|
||||||
|
--no-update-check
|
||||||
ExecStop=-/usr/bin/docker stop -t 10 %p
|
ExecStop=-/usr/bin/docker stop -t 10 %p
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue