Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
343bc6e7
Unverified
Commit
343bc6e7
authored
Apr 15, 2021
by
Oleh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add healthchecks.md
parent
a84dd721
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
healthckes.md
docs/healthckes.md
+44
-0
No files found.
docs/healthckes.md
0 → 100644
View file @
343bc6e7
<!-- SPDX-License-Identifier: (AGPL-3.0-only OR CC-BY-4.0) -->
# SGXServer healthchecks
-
[
Check JSON-RPC server
](
#check-json-rpc-server
)
-
[
Check Secure Enclave part
](
#check-secure-enclave-part
)
## Check JSON-RPC server
To verify JSON-RPC server inside SGXWallet is up running execute one of the following commands:
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"getServerStatus","params":{}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"getServerVersion","params":{}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
If server does not respond or response contains error message than you should restart your SGXWallet.
## Check Secure Enclave part
To verify Secure Enclave part of SGXWallet is configured and initialized in a proper way run following commands:
1.
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"importBLSKeyShare","params":{"keyShare":"0xe632f7fde2c90a073ec43eaa90dca7b82476bf28815450a11191484934b9c3f", "keyShareName":"BLS_KEY:SCHAIN_ID:123456789:NODE_ID:0:DKG_ID:0"}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"blsSignMessageHash","params":{, "keyShareName":"BLS_KEY:SCHAIN_ID:123456789:NODE_ID:0:DKG_ID:0", "t":1, "n":1, "messageHash":"09c6137b97cdf159b9950f1492ee059d1e2b10eaf7d51f3a97d61f2eee2e81db"}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
2.
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"importECDSAKey","params":{"key":"0xe632f7fde2c90a073ec43eaa90dca7b82476bf28815450a11191484934b9c3f", "keyName":"NEK:abcdef"}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
```
bash
curl
--cert
PATH_TO_CERTS/file.crt
--key
PATH_TO_CERTS/file.key
-X
POST
--data
'{"jsonrpc":"2.0","method":"ecdsaSignMessageHash","params":{, "keyName":"BLS_KEY:SCHAIN_ID:123456789:NODE_ID:0:DKG_ID:0", "base":16, "messageHash":"09c6137b97cdf159b9950f1492ee059d1e2b10eaf7d51f3a97d61f2eee2e81db"}}'
-H
'content-type:application/json;'
YOUR_SGX_SERVER_URL
-k
```
Any error during one of the calls means that SGXWallet is misconfigured and will not work as you expect. Please try to run SGXWallet in backup mode.
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment