Skip to content

Commit

Permalink
Merge pull request #241 from Sayou1989/dev
Browse files Browse the repository at this point in the history
optimize account instructions
  • Loading branch information
mingzhenliu authored Oct 9, 2020
2 parents 57fa17e + 6c85d3f commit b18ca16
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 23 deletions.
9 changes: 8 additions & 1 deletion docs/WeBASE-Console-Suit/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,10 +404,17 @@ FISCO-BCOS证书说明可以参考FISCO-BCOS使用手册的[证书说明](https:

### 账号管理

账号管理提供管理台登陆账号的管理功能。管理台用户分为两种角色
账号管理提供管理台登陆账号的管理功能。管理台用户分为三种角色
- 普通用户,只有查看权限;

- 管理员用户,拥有管理平台的读写权限;

- 开发者用户,拥有开发者自身的合约和私钥用户的读写权限,数据概览权限;

开发者模式默认关闭。如需开启此功能,可以在WeBASE-Node-Manager配置文件application.yml中修改developerModeEnable为true,然后重启服务。

![](../../images/WeBASE-Console-Suit/developer_mode_enable.png)

注:此处账号与私钥管理的私钥用户为两种不同的概念,账号用于管理台权限控制,私钥用户为区块链账户。

账号管理:
Expand Down
32 changes: 10 additions & 22 deletions docs/WeBASE/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -518,23 +518,11 @@ ImportError: No module named 'pymysql'

答:需要安装PyMySQL,安装请参看 [pymysql](#pymysql-python3-5)

### 3. 安装MySQL-python遇到问题

```
Command "python setup.py egg_info" failed with error code 1
```

答:运行下面两个命令
```
pip install --upgrade setuptools
python -m pip install --upgrade pip
```

### 4. 部署时某个组件失败,重新部署提示端口被占用问题
### 3. 部署时某个组件失败,重新部署提示端口被占用问题

答:因为有个别组件是启动成功的,需先执行“python deploy.py stopAll”将其停止,再执行“python deploy.py installAll”部署全部。

### 5. 管理平台启动时Nginx报错
### 4. 管理平台启动时Nginx报错

```
...
Expand All @@ -546,7 +534,7 @@ Exception: execute cmd error ,cmd : sudo /usr/local/nginx/sbin/nginx -c /data/a

答:缺少/etc/nginx/mime.types文件,建议重装nginx。

### 6. 部署时数据库访问报错
### 5. 部署时数据库访问报错

```
...
Expand All @@ -563,7 +551,7 @@ OperationalError: (1045, "Access denied for user 'root'@'localhost' (using passw

答:确认数据库用户名和密码

### 7. 节点sdk目录不存在
### 6. 节点sdk目录不存在

```
...
Expand All @@ -572,7 +560,7 @@ OperationalError: (1045, "Access denied for user 'root'@'localhost' (using passw

答:确认节点安装目录下有没有sdk目录(企业部署工具搭建的链可能没有),如果没有,需手动创建"mkdir sdk",并将节点证书(ca.crt、node.crt、node.key)复制到该目录,再重新部署。

### 8. 前置启动报错“nested exception is javax.net.ssl.SSLException”
### 7. 前置启动报错“nested exception is javax.net.ssl.SSLException”

```
...
Expand All @@ -582,7 +570,7 @@ nested exception is javax.net.ssl.SSLException: Failed to initialize the client-
答:CentOS的yum仓库的OpenJDK缺少JCE(Java Cryptography Extension),导致Web3SDK无法正常连接区块链节点,因此在使用CentOS操作系统时,推荐使用[OracleJDK](#jdk)


### 9.前置启动报错“Processing bcos message timeout”
### 8.前置启动报错“Processing bcos message timeout”

```
...
Expand All @@ -593,7 +581,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating

答:一些OpenJDK版本缺少相关包,导致节点连接异常。推荐使用[OracleJDK](#jdk)

### 10. 服务进程起来了,服务不正常
### 9. 服务进程起来了,服务不正常

```
...
Expand All @@ -602,7 +590,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating

答:查看日志,确认问题原因。确认后修改重启,如果重启提示服务进程在运行,先执行“python deploy.py stopAll”将其停止,再执行“python deploy.py startAll”重启。

### 11. WeBASE-Web登录页面的验证码加载不出来
### 10. WeBASE-Web登录页面的验证码加载不出来

答:检查WeBASE-Node-Manager后台服务是否已启动成功。若启动成功,检查后台日志:

Expand Down Expand Up @@ -632,10 +620,10 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
* 修改日志level后,重启服务 `bash stop.sh && bash start.sh`

* 重启服务后,检查日志文件 `log/WeBASE-Node-Manager.log`

* 检查是否有异常信息。如果有异常信息,根据具体的异常信息检查环境配置,或者通过搜索引擎进行排查。

### 12. WeBASE 国内镜像与CDN加速服务
### 11. WeBASE 国内镜像与CDN加速服务

答:WeBASE CDN 加速服务提供 WeBASE 各子系统安装包的下载服务,可参考[国内镜像和CDN加速攻略](./mirror.html)

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/WeBASE-Console-Suit/login_user_add_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b18ca16

Please sign in to comment.