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/05 04:32:16 UTC

[GitHub] [apisix-dashboard] coolmingwu opened a new issue, #2681: 切换2.13.1后连接etcd报错

coolmingwu opened a new issue, #2681:
URL: https://github.com/apache/apisix-dashboard/issues/2681

   ### Issue description
   
   切换dashboard版本后,日志报错
   ![image](https://user-images.githubusercontent.com/93962343/205550006-12f5f193-653e-4117-97e5-fc20c5cc2119.png)
   
   
   ### Expected behavior
   
   切换版本后不影响使用
   
   ### How to Reproduce
   
   直接切换dashboard版本
   
   ### Screenshots
   
   _No response_
   
   ### Environment
   
   - apisix version (cmd: `apisix version`):
   - OS (cmd: `uname -a`):
   - OpenResty / Nginx version (cmd: `nginx -V` or `openresty -V`):
   - etcd version, if have (cmd: run `etcd --version`):
   - apisix-dashboard version, if have:
   - Browser version, if have:
   
   
   ### Additional context
   
   _No response_


-- 
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.apache.org

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


[GitHub] [apisix-dashboard] coolmingwu closed issue #2681: 切换2.13.1后连接etcd报错

Posted by GitBox <gi...@apache.org>.
coolmingwu closed issue #2681: 切换2.13.1后连接etcd报错
URL: https://github.com/apache/apisix-dashboard/issues/2681


-- 
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


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

Posted by GitBox <gi...@apache.org>.
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


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

Posted by GitBox <gi...@apache.org>.
coolmingwu commented on issue #2681:
URL: https://github.com/apache/apisix-dashboard/issues/2681#issuecomment-1338652502

   > 这个问题看像是etcd的ETCD_ADVERTISE_CLIENT_URLS参数,配置成了[http://0.0.0.0:2379,把这个配置改成客户端能访问的IP就行,我也遇到过。](http://0.0.0.0:2379%EF%BC%8C%E6%8A%8A%E8%BF%99%E4%B8%AA%E9%85%8D%E7%BD%AE%E6%94%B9%E6%88%90%E5%AE%A2%E6%88%B7%E7%AB%AF%E8%83%BD%E8%AE%BF%E9%97%AE%E7%9A%84IP%E5%B0%B1%E8%A1%8C%EF%BC%8C%E6%88%91%E4%B9%9F%E9%81%87%E5%88%B0%E8%BF%87%E3%80%82)
   > 
   > ```
   >  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