You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/12/06 01:34:59 UTC

[GitHub] [apisix-dashboard] nhlzh8708 commented on issue #2681: 切换2.13.1后连接etcd报错

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: notifications-unsubscribe@apisix.apache.org

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