File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -80,30 +80,39 @@ go install github.com/google/trillian/cmd/trillian_log_server@v1.3.14-0.20210713
8080go install github.com/google/trillian/cmd/trillian_log_signer@v1.3.14-0.20210713114448-df474653733c
8181```
8282
83+ ```
84+ go install github.com/google/trillian/cmd/createtree@v1.3.14-0.20210713114448-df474653733c
85+ ```
86+
8387## Run trillian
8488
8589First run the trillian log server
8690
8791```
88- trillian_log_server -http_endpoint=localhost:8090 -rpc_endpoint=localhost:8091 --logtostderr ...
92+ trillian_log_server -http_endpoint=localhost:8091 -rpc_endpoint=localhost:8090 --logtostderr ...
8993```
9094
9195Now run the signer:
9296
9397```
94- trillian_log_signer --logtostderr --force_master --http_endpoint=localhost:8190 -rpc_endpoint=localhost:8191 --batch_size=1000 --sequencer_guard_window=0 --sequencer_interval=200ms
98+ trillian_log_signer --logtostderr --force_master --http_endpoint=localhost:8191 -rpc_endpoint=localhost:8190 --batch_size=1000 --sequencer_guard_window=0 --sequencer_interval=200ms
99+ ```
100+
101+ Create tree:
102+
103+ ```
104+ createtree --admin_server=localhost:8090
95105```
96106
97107## Run Rekor
98108
99109We are now ready to run rekor.
100110
101- > :notebook : If you want a quick handy search index, then you will need to install redis-server
102- if you choose not to, then you must pass the argument ` --enable_retrieve_api ` false.
103-
104111```
105- rekor-server serve --rekor_server.address=0.0.0.0 --rekor_server.port=3000
112+ rekor-server serve --rekor_server.address=0.0.0.0 --rekor_server.port=3000 --enable_retrieve_api=false
106113```
114+ > :notebook : If you want a quick handy search index, then you will need to install redis-server
115+ and remove the argument ` --enable_retrieve_api=false ` .
107116
108117Example:
109118
You can’t perform that action at this time.
0 commit comments