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


┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl show services┌─────────────────────┬─────────────────────────────────────────────────────────────┐│ Service │ Read-Write-Service │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Router │ readwritesplit │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ State │ Started │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Started At │ Sun Oct 9 22:50:17 2022 │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Current Connections │ 0 │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Total Connections │ 0 │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Max Connections │ 0 │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Cluster │ │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Servers │ server1 ││ │ server2 │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Services │ │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Filters │ │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Parameters │ { ││ │ "auth_all_servers": false, ││ │ "causal_reads": "false", ││ │ "causal_reads_timeout": 10000, ││ │ "transaction_replay_max_size": "1073741824", ││ │ "transaction_replay_retry_on_deadlock": false, ││ │ "use_sql_variables_in": "all", ││ │ "user": "maxscaleroute", ││ │ "version_string": null ││ │ } │├─────────────────────┼─────────────────────────────────────────────────────────────┤│ Router Diagnostics │ { ││ │ "queries": 0, ││ │ "server_query_statistics": [] ││ │ } │└─────────────────────┴─────────────────────────────────────────────────────────────┘┌──[root@vms152.liruilongs.github.io]-[~]└─$检查读写分离
创建一个普通用户用于测试,并且授权数据库liruilong_db
┌──[root@vms153.liruilongs.github.io]-[~]└─$mysql -uroot -pliruilongWelcome to the MariaDB monitor. Commands end with ; or g.Your MariaDB connection id is 50Server version: 5.5.68-MariaDB MariaDB ServerCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.MariaDB [(none)]> grant all on liruilong_db.* to liruilong@"%" identified by "liruilong";Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> select user,host from mysql.user;| user | host || liruilong | % || maxscalemon | % || maxscaleroute | % || repluser | % || root | 127.0.0.1 || root | ::1 || root | localhost || root | vms153.liruilongs.github.io |8 rows in set (0.00 sec)MariaDB [(none)]>


推荐阅读