tanpenggood commented on issue #6593:
URL: https://github.com/apache/skywalking/issues/6593#issuecomment-1870307940

   Hi bro, I also encountered the same problem, I am using skywalking 9.1.0
   I didn't modify the relevant environment variables and configurations.
   Accessing skywalking, the browser remains in a white screen state.
   After `docker-compose restart` skywalking, normal access was restored.
   
   my docker-compose as follow:
   ```yaml
   version: '3.3'
   services:
     skywalking-oap-server:
       image: apache/skywalking-oap-server:9.1.0
       container_name: skywalking-oap-server
       restart: always
       ports:
         - 11800:11800
         - 12800:12800
       environment:
         SW_STORAGE: h2
         TZ: Asia/Shanghai
         JAVA_OPTS: '-Xms1024m -Xmx1024m -Xmn512m'
         SW_OTEL_RECEIVER: default
         SW_OTEL_RECEIVER_ENABLED_OC_RULES: vm
         SW_OTEL_RECEIVER_ENABLED_OTEL_METRICS_RULES: vm
       networks: 
         - sw
       volumes:
         - ./oap/conf/alarm-settings.yml:/skywalking/config/alarm-settings.yml
   
     skywalking-ui:
       image: apache/skywalking-ui:9.1.0
       container_name: skywalking-ui
       networks:
         - sw
       depends_on:
         - skywalking-oap-server
       links:
         - skywalking-oap-server
       restart: always
       ports:
         - 8080:8080
       environment:
         SW_OAP_ADDRESS: http://skywalking-oap-server:12800
         TZ: Asia/Shanghai
         JAVA_OPTS: '-Xms256m -Xmx256m'
   
   networks:
     sw:
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to