MaxScale 关于Linux下MySQL主备集群负载均衡之读写分离( 四 )

检查服务器配置
使用maxctrl list servers和maxctrl show server命令查看配置的服务器对象 。
获取服务器对象的完整列表:
 

  • server1 :192.168.26.153:3306 ││ Master, Running
  • server2 :192.168.26.154:3306 ││ Slave, Running
┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl list servers┌─────────┬────────────────┬──────┬─────────────┬─────────────────┬──────┐│ Server │ Address │ Port │ Connections │ State │ GTID │├─────────┼────────────────┼──────┼─────────────┼─────────────────┼──────┤│ server1 │ 192.168.26.153 │ 3306 │ 0 │ Master, Running │ │├─────────┼────────────────┼──────┼─────────────┼─────────────────┼──────┤│ server2 │ 192.168.26.154 │ 3306 │ 0 │ Slave, Running │ │└─────────┴────────────────┴──────┴─────────────┴─────────────────┴──────┘┌──[root@vms152.liruilongs.github.io]-[~]└─$ 
对于每一个服务器对象,查看配置:
┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl show server server1┌─────────────────────┬───────────────────────────────────────────┐│ Server │ server1 │├─────────────────────┼───────────────────────────────────────────┤│ Address │ 192.168.26.153 │├─────────────────────┼───────────────────────────────────────────┤│ Port │ 3306 │├─────────────────────┼───────────────────────────────────────────┤│ State │ Master, Running │├─────────────────────┼───────────────────────────────────────────┤│ Version │ 5.5.68-MariaDB │├─────────────────────┼───────────────────────────────────────────┤│ Last Event │ master_up │├─────────────────────┼───────────────────────────────────────────┤│ Triggered At │ Sun, 09 Oct 2022 14:50:14 GMT │├─────────────────────┼───────────────────────────────────────────┤│ Services │ Read-Write-Service │├─────────────────────┼───────────────────────────────────────────┤│ Monitors │ MariaDB-Monitor │├─────────────────────┼───────────────────────────────────────────┤│ Master ID │ -1 │├─────────────────────┼───────────────────────────────────────────┤│ Node ID │ 153 │├─────────────────────┼───────────────────────────────────────────┤│ Slave Server IDs │ │├─────────────────────┼───────────────────────────────────────────┤│ Current Connections │ 0 │├─────────────────────┼───────────────────────────────────────────┤│ Total Connections │ 0 │├─────────────────────┼───────────────────────────────────────────┤│ Max Connections │ 0 │├─────────────────────┼───────────────────────────────────────────┤│ Statistics │ { ││ │ "active_operations": 0, ││ │ "total_connections": 0 ││ │ } │├─────────────────────┼───────────────────────────────────────────┤│ Parameters │ { ││ │ "address": "192.168.26.153", ││ │ "ssl_version": "MAX" ││ │ } │└─────────────────────┴───────────────────────────────────────────┘┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl show server server2


推荐阅读