I followed the steps in the tutorial below: https://www.digitalocean.com/community/tutorials/how-to-configure-a-galera-cluster-with-mariadb-10-1-on-ubuntu-16-04-servers
Everything worked perfectly and now I would like to know how do I access the database via mysqlworkbench and create the tables.
I tried to access but I could not. I went via ssh and I got the error: bad conversion. I accessed via Standart TCP/IP over SSH.
I intend to access the bank of another droplet using php, to which of the 2 ips do I point? For the one of the first droplet of mariadb?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@rafacorre
That specific tutorial is setting up an active-active cluster, thus it shouldn’t really matter which node you connect to, though for the purpose of getting things working, I’d connect to the primary, which would be the one you ran
galera_new_cluster
on –galera-node-01
in the guide.Since they are all binding to
0.0.0.0
using:You should be able to connect remotely using your Droplets Public IPv 4 IP without any issues. If you’re not able to connect, try disabling
ufw
temporarily and then try to reconnect.@jtittle this config bind-address=0.0.0.0 works for me! Thank you very much!