Commit c3f9783f authored by 郭人方's avatar 郭人方

doc: 补充UI端口说明

parent c3ddf894
...@@ -115,7 +115,47 @@ cluster: ...@@ -115,7 +115,47 @@ cluster:
## 三、启动SkyWalking ## 三、UI端口修改
修改./webapp/webapp.yml文件
```shell
vim webapp/webapp.yml
```
```yaml
server:
port: 8080
spring:
cloud:
gateway:
routes:
- id: oap-route
uri: lb://oap-service
predicates:
- Path=/graphql/**
discovery:
client:
simple:
instances:
oap-service:
- uri: http://127.0.0.1:12800
mvc:
throw-exception-if-no-handler-found: true
web:
resources:
add-mappings: true
management:
server:
base-path: /manage
```
## 四、启动SkyWalking
配置文件修改后,就可以启动SkyWalking了,SkyWalking里面有两个东西需要启动,一个是ui服务,一个是oap(Observability Analysis Platform)分析服务. 配置文件修改后,就可以启动SkyWalking了,SkyWalking里面有两个东西需要启动,一个是ui服务,一个是oap(Observability Analysis Platform)分析服务.
...@@ -136,6 +176,9 @@ cd bin ...@@ -136,6 +176,9 @@ cd bin
./webappService.sh ./webappService.sh
``` ```
## 访问地址
http://localhost:8080/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment