You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by GitBox <gi...@apache.org> on 2019/05/27 07:31:43 UTC

[GitHub] [skywalking] zengqinglei commented on issue #2761: Infrequent exception: SocketTimeoutException: Read timed out

zengqinglei commented on issue #2761: Infrequent exception: SocketTimeoutException: Read timed out
URL: https://github.com/apache/skywalking/issues/2761#issuecomment-496110300
 
 
   > This is just caused by your OAP doesn't start up right.
   
   Hi!
   I checked the oap container through docker logs -f -t --tail 100 skywalking-oap, the operation has been normal, no exception!
   My development environment is deployed in the same way, there is no such problem!
   The docker-compose content is as follows:
   
   ``` dockerfile
     skywalking-oap:
       image: registry.cn-shenzhen.aliyuncs.com/zengql-release/skywalking-oap:6.1.0
       container_name: skywalking-oap
       restart: always
       ports:
         - 11800:11800
         - 12800:12800
       environment:
         - SW_CLUSTER_ZK_HOST_PORT=${Host}:2181
         - SW_CLUSTER_CONSUL_HOST_PORT=${Host}:8500
         - SW_STORAGE_ES_CLUSTER_NODES=${Host}:9200
         - SW_ES_USER=elastic
         - SW_ES_PASSWORD=Za888888
       volumes:
         - ${Workdir}/skywalking/config:/skywalking/config:ro
   
     skywalking-ui:
       image: registry.cn-shenzhen.aliyuncs.com/zengql-release/skywalking-ui:6.1.0
       container_name: skywalking-ui
       depends_on:
         - skywalking-oap
       links:
         - skywalking-oap
       restart: always
       ports:
         - 18080:8080
       environment:
         collector.ribbon.listOfServers: skywalking-oap:12800
   ```
   
   Similarly, it is normal to view the information via the command line: `docker exec skywalking-ui ping skywalking-oap`.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services