nhlzh8708 commented on issue #2681:
URL: 
https://github.com/apache/apisix-dashboard/issues/2681#issuecomment-1338594644

   
这个问题看像是etcd的ETCD_ADVERTISE_CLIENT_URLS参数,配置成了http://0.0.0.0:2379,把这个配置改成客户端能访问的IP就行,我也遇到过。
   ```
    etcd:
       container_name: etcd
       image: *****/bitnami/etcd:3.4.13-debian-10-r7
       user: root
       restart: always
       environment:
         ETCD_ENABLE_V2: "true"
         ALLOW_NONE_AUTHENTICATION: "yes"
         ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379";
         ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379";
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to