Details
-
Task
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
2.3.10
-
None
Description
Folks,
I've just compiled MaxScale using the current source on Github, and I yet see the `MaxAdmin-Service` and CLI Router configurations on the maxscale.cnf template file - maybe it's time to remove that as maxadmin is deprecated and will be removed on 2.4?
[root@mxs01 build]# maxscale --version |
MaxScale 2.3.10 |
|
[root@mxs01 build]# maxctrl list services |
┌────────────────────┬────────────────┬─────────────┬───────────────────┬─────────┐
|
│ Service │ Router │ Connections │ Total Connections │ Servers │
|
├────────────────────┼────────────────┼─────────────┼───────────────────┼─────────┤
|
│ Read-Only-Service │ readconnroute │ 1 │ 1 │ server1 │ |
├────────────────────┼────────────────┼─────────────┼───────────────────┼─────────┤
|
│ MaxAdmin-Service │ cli │ 1 │ 1 │ │ |
├────────────────────┼────────────────┼─────────────┼───────────────────┼─────────┤
|
│ Read-Write-Service │ readwritesplit │ 1 │ 1 │ server1 │ |
└────────────────────┴────────────────┴─────────────┴───────────────────┴─────────┘
|
Below is what I think should be removed from the maxscale.cnf file added to the environment after finishing compiling MaxScale:
# This service enables the use of the MaxAdmin interface |
# MaxScale administration guide:
|
# https://mariadb.com/kb/en/mariadb-maxscale-23-maxadmin-admin-interface/ |
|
[MaxAdmin-Service]
|
type=service
|
router=cli
|
|
[MaxAdmin-Listener]
|
type=listener
|
service=MaxAdmin-Service
|
protocol=maxscaled
|
socket=default |
Thanks!!