Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. [maxscale]
  2. threads=1
  3.  
  4. [server1]
  5. type=server
  6. address=ip.address
  7. port=3306
  8. protocol=MySQLBackend
  9.  
  10. [MySQL Monitor]
  11. type=monitor
  12. module=mysqlmon
  13. servers=server1
  14. user=maxscale
  15. passwd=password
  16. monitor_interval=10000
  17.  
  18. [MaxAdmin Service]
  19. type=service
  20. router=cli
  21.  
  22. [MaxAdmin Listener]
  23. type=listener
  24. service=MaxAdmin Service
  25. protocol=maxscaled
  26. socket=default
  27.  
  28. [replication-service]
  29. type=service
  30. router=binlogrouter
  31. user=maxscale
  32. passwd=password
  33. router_options=server-id=1000,
  34. binlogdir=/var/lib/maxscale/,
  35. mariadb10-compatibility=1,
  36.  
  37. [avro-service]
  38. type=service
  39. router=avrorouter
  40. source=replication-service
  41. router_options=avrodir=/var/lib/maxscale/avro/,filestem=mysqld-bin
  42. user=cdc_user
  43. password=password
  44.  
  45. [replication-listener]
  46. type=listener
  47. service=replication-service
  48. protocol=MySQLClient
  49. port=3306
  50.  
  51. [avro-listener]
  52. type=listener
  53. service=avro-service
  54. protocol=CDC
  55. port=4001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement