我和mariadb一起运行Ubuntu 16.04,
我在官方网站上下载了最大比例尺,
现在我不能开始服务了,没那么有用
2017-02-28 11:41:11 notice : Working directory: /var/log/maxscale
2017-02-28 11:41:11 notice : MariaDB MaxScale 2.0.4 started
2017-02-28 11:41:11 notice : MaxScale is running in process 21493
2017-02-28 11:41:11 notice : Configuration file: /etc/maxscale.cnf
2017-02-28 11:41:11 notice : Log directory: /var/log/maxscale
2017-02-28 11:41:11 notice : Data directory: /var/lib/maxscale
2017-02-28 11:41:11 notice : Module directory: /usr/lib/x86_64-linux-gnu/maxscale
2017-02-28 11:41:11 notice : Service cache: /var/cache/maxscale
2017-02-28 11:41:11 notice : No query classifier specified, using default 'qc_sqlite'.
2017-02-28 11:41:11 notice : Loaded module qc_sqlite: V1.0.0 from /usr/lib/x86_64-linux-gnu/maxscale/libqc_sqlite.so
2017-02-28 11:41:11 error : Failed to start all MaxScale services. Exiting.
2017-02-28 11:41:11 MaxScale is shut down./etc/maxscale.cnf
[maxscale]
threads=1
[server1]
type=server
address=127.0.0.1
port=3306
protocol=MySQLBackend有什么想法吗?
发布于 2017-02-28 07:43:02
它未能启动的原因是您没有定义服务。尽管在错误消息中解释了这一点,但解释起来并不容易:2017-02-28 11:41:11 error : Failed to start all MaxScale services. Exiting.
尝试将以下三个对象添加到您的配置中:
[Read-Connection-Router]
type=service
router=readconnroute
servers=server1
user=maxuser
passwd=maxpwd
[Read-Connection-Listener]
type=listener
service=Read-Connection-Router
protocol=MySQLClient
port=4008
[MySQL-Monitor]
type=monitor
module=mysqlmon
servers=server1
user=maxuser
passwd=maxpwd
monitor_interval=1000Read-Connection-Router是MaxScale提供的服务。Read-Connection-Listener是客户端可以连接的网络端口,并链接到先前定义的服务。最后一个对象MySQL-Monitor是主动监视数据库服务器状态的数据库监视器。
配置中定义的mysqlmon模块用于标准的主-从复制群集。如果使用Galera集群,则需要使用galeramon模块。
https://stackoverflow.com/questions/42499802
复制相似问题