Skip to content

Commit

Permalink
Merge pull request #245 from CodingCattwo/dev
Browse files Browse the repository at this point in the history
add gm in quick install
  • Loading branch information
mingzhenliu authored Oct 19, 2020
2 parents a3b2b04 + 4630887 commit 9482ad6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/WeBASE-Console-Suit/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ CRUD:CRUD通过在Solidity合约中支持分布式存储预编译合约,可
- 用户不能同时成为链委员和运维管理员;
- **运维管理**: 运维由链委员直接赋予(无需通过投票赋予),运维可以部署合约、创建表、管理合约版本、冻结解冻本账号部署的合约;

> **注:**链委员会为空时,不作链委员会权限限制,所有用户拥有委员权限,可以自由给自身或其他用户添加链委员权限;设置了第一个链委员后,非链委员用户无权限;请妥善保管链委员的私钥!
> 注:链委员会为空时,不作链委员会权限限制,所有用户拥有委员权限,可以自由给自身或其他用户添加链委员权限;设置了第一个链委员后,非链委员用户无权限;请妥善保管链委员的私钥!
>
> 运维管理员为空时,所有用户拥有运维权限;同理,设置了第一个运维管理员后,非运维用户无权限;
Expand Down
3 changes: 3 additions & 0 deletions docs/WeBASE-Front/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ cd conf

**注意:** 需要将节点所在目录`nodes/${ip}/sdk`下的`ca.crt``node.crt``node.key`文件拷贝到当前conf目录,供SDK与节点建立连接时使用。

*如果使用了国密版SSL* `nodes/${ip}/sdk/gm/`下的**所有证书**拷贝到conf目录下。
- 注,国密版**默认使用非国密SSL**,只有在建链时手动指定了`-G`(大写)时才会使用国密SSL

(3)修改配置(根据实际情况修改):

```
Expand Down
13 changes: 12 additions & 1 deletion docs/WeBASE-Install/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,20 @@

3. 拷贝sdk证书文件(build_chain的时候生成的)

将节点所在目录nodes/${ip}/sdk下的ca.crt、node.crt和node.key文件拷贝到conf下
将节点所在目录`nodes/${ip}/sdk`下的ca.crt、node.crt和node.key文件拷贝到conf下

*如果使用了国密版SSL* `nodes/${ip}/sdk/gm/`下的**所有证书**拷贝到conf目录下。
- 注,国密版**默认使用非国密SSL**,只有在建链时手动指定了`-G`(大写)时才会使用国密SSL


4. 服务起停

**国密版**则通过vi修改`application.yml`中将`sdk-encryptType`设置为`1`(默认为0),也可以直接通过以下命令进行快速修改,修改后即可执行启停命令进行服务启停。
```shell
sed -i "s%encryptType: 0%encryptType: 1%g" ./conf/application.yml
```

服务启停命令:
```shell
启动: bash start.sh
停止: bash stop.sh
Expand Down

0 comments on commit 9482ad6

Please sign in to comment.