Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
2.3.4
-
None
Description
JSON Interface not work with Maxscale 2.3 under some unknown circumsiances.
To reproduce:
Needed:
installed docker and docker-compose
unzip attachen zip file.
cd maxtest
docker-compose up -d
Execute on host:
curl http://127.0.0.1:8003/servers
--> no result
With changing the maxscale version in docker-compose.yml from 2.3 to 2.2
it works with the expected result.
echnaton@f353:~/maxtest$ curl http://127.0.0.1:8003/servers |
[ { "Server" : "server1", "Address" : "master", "Port" : 3306, "Connections" : 0, "Status" : "Down"}, |
{ "Server" : "server2", "Address" : "slave1", "Port" : 3306, "Connections" : 0, "Status" : "Down"}, |
{ "Server" : "server3", "Address" : "slave2", "Port" : 3306, "Connections" : 0, "Status" : "Down"}] |