Skip to content

Commit

Permalink
更新README.md文档
Browse files Browse the repository at this point in the history
  • Loading branch information
micyo202 committed Mar 31, 2020
1 parent 960314d commit 6c3fa94
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions skywalking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,23 @@ docker pull apache/skywalking-ui:6.6.0
##### 启动 SkyWalking OAP 服务
```shell script
docker run -d \
-e SW_STORAGE=mysql \
-e SW_JDBC_URL=jdbc:mysql://localhost:3306/skywalking \
-e SW_DATA_SOURCE_USER=lion \
-e SW_DATA_SOURCE_PASSWORD=lion \
--name skywalking-oap-server \
--restart always \
apache/skywalking-oap-server:6.6.0-es7
-e SW_STORAGE=mysql \
-e SW_JDBC_URL=jdbc:mysql://localhost:3306/skywalking \
-e SW_DATA_SOURCE_USER=lion \
-e SW_DATA_SOURCE_PASSWORD=lion \
--name skywalking-oap-server \
--restart always \
apache/skywalking-oap-server:6.6.0-es7
```

##### 启动 SkyWalking Webapp 服务
```shell script
docker run -d \
-p 8900:8080 \
-e SW_OAP_ADDRESS=skywalking-oap-server:12800 \
--name skywalking-oap-server \
--restart always \
apache/skywalking-ui:6.6.0
-p 8900:8080 \
-e SW_OAP_ADDRESS=skywalking-oap-server:12800 \
--name skywalking-oap-server \
--restart always \
apache/skywalking-ui:6.6.0
```

### 成功启动后进入 dashboard 界面
Expand Down
24 changes: 12 additions & 12 deletions zipkin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ docker pull openzipkin/zipkin:tagname

```shell script
docker run -d \
-p 9411:9411 \
-e RABBIT_ADDRESSES=localhost:5672 \
-e RABBIT_USER=guest \
-e RABBIT_PASSWORD=guest \
-e STORAGE_TYPE=mysql \
-e MYSQL_HOST=localhost \
-e MYSQL_USER=root \
-e MYSQL_PASS=root \
-e MYSQL_DB=zipkin \
--name zipkin \
--restart always \
openzipkin/zipkin:tagname
-p 9411:9411 \
-e RABBIT_ADDRESSES=localhost:5672 \
-e RABBIT_USER=guest \
-e RABBIT_PASSWORD=guest \
-e STORAGE_TYPE=mysql \
-e MYSQL_HOST=localhost \
-e MYSQL_USER=root \
-e MYSQL_PASS=root \
-e MYSQL_DB=zipkin \
--name zipkin \
--restart always \
openzipkin/zipkin:tagname
```

### Mysql 存储 schema DDL
Expand Down

0 comments on commit 6c3fa94

Please sign in to comment.