ui-setup.md 672 字节
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# UI
SkyWalking UI distribution is already included in our Apache official release. 

## Startup
Startup script is also in `/bin/webappService.sh`(.bat). UI runs as an OS Java process, powered-by Zuul.

## Settings
Setting file of UI is  `webapp/webapp.yml` in distribution package. It is constituted by three parts.

1. Listening port.
1. Backend connect info.
1. Auth setting.

14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
```yaml
server:
  port: 8080

collector:
  path: /graphql
  ribbon:
    ReadTimeout: 10000
    # Point to all backend's restHost:restPort, split by , 
    listOfServers: 10.2.34.1:10800,10.2.34.2:10800

security:
  user:
    # username
    admin:
      # password
      password: admin

```