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 2021/04/21 03:40:51 UTC

[GitHub] [apisix-dashboard] hzbd opened a new issue #1811: The manager-api and apache apisix are mismatched?

hzbd opened a new issue #1811:
URL: https://github.com/apache/apisix-dashboard/issues/1811


   **Issue description**
   _Request Error Code: 2000001
   The manager-api and apache apisix are mismatched._
   
   ![image](https://user-images.githubusercontent.com/3000843/115493420-516faf00-a296-11eb-979f-85538325aa77.png)
   **Environment**
   **CentOS 7.9**
   [root@xxx dashboard]# ./manager-api -v
   **Version : 2.5
   GitHash : 5c95d97**
   [root@xxx dashboard]# apisix version
   **/usr/local/openresty/luajit/bin/luajit /usr/local/apisix/apisix/cli/apisix.lua version
   2.5**
   [root@xxx dashboard]# openresty -v
   **nginx version: openresty/1.19.3.1**
   
   Is this a bug or is it a problem with my settings?


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



[GitHub] [apisix-dashboard] hzbd closed issue #1811: The manager-api and apache apisix are mismatched?

Posted by GitBox <gi...@apache.org>.
hzbd closed issue #1811:
URL: https://github.com/apache/apisix-dashboard/issues/1811


   


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



[GitHub] [apisix-dashboard] nic-chen commented on issue #1811: The manager-api and apache apisix are mismatched?

Posted by GitBox <gi...@apache.org>.
nic-chen commented on issue #1811:
URL: https://github.com/apache/apisix-dashboard/issues/1811#issuecomment-860347915


   hi  @forgaoqiang
   
   Please take a look at `System Info` on Dashboard to make sure that the versions of APISIX and Dashboard are what you expect.
   
   ![image](https://user-images.githubusercontent.com/33000667/121837845-399e2f80-cd09-11eb-9553-54ed8d18a7c8.png)
   
    


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



[GitHub] [apisix-dashboard] forgaoqiang commented on issue #1811: The manager-api and apache apisix are mismatched?

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


   The problem happened when I use apache/apisix:2.5-centos with apisix-dashboard:2.6.1
   
   dashboard 2.6.1 didn't support apisix:2.5 ??
   
   Is there any way I could know the which apisix-dashboard could play with apisix


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



[GitHub] [apisix-dashboard] juzhiyuan commented on issue #1811: The manager-api and apache apisix are mismatched?

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


   see https://github.com/apache/apisix-dashboard/issues/1944


-- 
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] xshans edited a comment on issue #1811: The manager-api and apache apisix are mismatched?

Posted by GitBox <gi...@apache.org>.
xshans edited a comment on issue #1811:
URL: https://github.com/apache/apisix-dashboard/issues/1811#issuecomment-879668328


   Request Error Code: 2000001
   The manager-api and apache apisix are mismatched.
   
   version: "3"
   
   services:
     apisix-dashboard:
       image: apache/apisix-dashboard:2.7
       privileged: true
       restart: always
       volumes:
       - ./dashboard_conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml
       ports:
       - "9000:9000"
       networks:
         apisix:
   
     apisix:
       image: apache/apisix:2.7-alpine
       privileged: true
       restart: always
       volumes:
         - ./apisix_log:/usr/local/apisix/logs
         - ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
       depends_on:
         - etcd
       ##network_mode: host
       ports:
         - "9080:9080/tcp"
         - "9443:9443/tcp"
       networks:
         apisix:
   
     etcd:
       image: bitnami/etcd:3.4.14
       privileged: true
       user: root
       restart: always
       volumes:
         - ./etcd_data:/bitnami/etcd
       environment:
         ETCD_ENABLE_V2: "true"
         ALLOW_NONE_AUTHENTICATION: "yes"
         ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
         ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
       ports:
         - "2379:2379/tcp"
       networks:
         apisix:
   
     web1:
       image: nginx:1.21.1-alpine
       privileged: true
       restart: always
       volumes:
         - ./upstream/web1.conf:/etc/nginx/nginx.conf
       ports:
         - "9081:80/tcp"
       environment:
         - NGINX_PORT=80
       networks:
         apisix:
   
     web2:
       image: nginx:1.21.1-alpine
       privileged: true
       restart: always
       volumes:
         - ./upstream/web2.conf:/etc/nginx/nginx.conf
       ports:
         - "9082:80/tcp"
       environment:
         - NGINX_PORT=80
       networks:
         apisix:
   
   networks:
     apisix:
       driver: bridge
   
   apache/apisix:2.6-alpine / apache/apisix:2.7-alpine also
   
   ![image](https://user-images.githubusercontent.com/52526052/125582337-6363f9f0-76bd-40f5-b813-ce8e3512b2d1.png)
   


-- 
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] xshans commented on issue #1811: The manager-api and apache apisix are mismatched?

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


   Request Error Code: 2000001
   The manager-api and apache apisix are mismatched.
   
   ![image](https://user-images.githubusercontent.com/52526052/125582337-6363f9f0-76bd-40f5-b813-ce8e3512b2d1.png)
   


-- 
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] nic-chen commented on issue #1811: The manager-api and apache apisix are mismatched?

Posted by GitBox <gi...@apache.org>.
nic-chen commented on issue #1811:
URL: https://github.com/apache/apisix-dashboard/issues/1811#issuecomment-823774139


   hi @hzbd  
   can't use Dashboard 2.5 with APISIX 2.5, need to wait for Dashboard 2.6.
   
   Dashboard 2.5 works with APISIX 2.4.
   


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