{"id":37586,"date":"2021-07-02T12:30:00","date_gmt":"2021-07-02T17:30:00","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=37586"},"modified":"2024-03-06T05:10:23","modified_gmt":"2024-03-06T11:10:23","slug":"mariadb-galera-cluster-replication","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/mariadb-galera-cluster-replication\/","title":{"rendered":"MariaDB Galera Cluster Replication"},"content":{"rendered":"
MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the MariaDB database. Clustering is a technology that provides high availability to your database by distributing the changes among multiple database nodes. If one of the database nodes fails others are quickly available to continue serving.<\/p>\n\n\n\n\n\n\n\n
Features of Galera Cluster<\/strong><\/p>\n\n\n\nProvides synchronous replication so if one of the nodes crashed not data is lost.<\/li>True multi-master. This means you can read and write on any node.<\/li>Provides multi-threaded slave to handle any workload.<\/li>Provision new node automatically. You don’t need to backup and copy the database to a new node.<\/li>Supports InnoDB.<\/li>Hot standby. This means there is no downtime of failover.<\/li>Supports multi-cloud and multi-region deployments.<\/li><\/ul>\n\n\n\nIn this guide, we will show you how to deploy a MariaDB Galera cluster on the RoseHosting Cloud Platform.<\/p>\n\n\n\n\nTable of Contents<\/p>\nToggle<\/span><\/path><\/svg><\/svg><\/span><\/span><\/label>Install MariaDB Galera Cluster<\/a><\/li>Access phpMyAdmin<\/a><\/li>Create a Tomcat Environment and Deploy a Test Application<\/a><\/li>Test Your Application<\/a><\/li><\/ul><\/nav><\/div>\n<\/span>Install MariaDB Galera Cluster<\/span><\/h2>\n\n\n\nFirst, log in to the RoseHosting cloud platform using the URL https:\/\/app.rosehosting.cloud as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the NEW ENVIRONMENT<\/strong> to create a new environment for MariaDB Galera. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nHere, select the MariaDB, Enable auto-clustering, Enable Add ProxySQL, Define your environment name and click on the Create<\/strong> button. After few minutes, your environment has been created as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nYou should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\nYou can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
In this guide, we will show you how to deploy a MariaDB Galera cluster on the RoseHosting Cloud Platform.<\/p>\n\n\n\n
Table of Contents<\/p>\nToggle<\/span><\/path><\/svg><\/svg><\/span><\/span><\/label>Install MariaDB Galera Cluster<\/a><\/li>Access phpMyAdmin<\/a><\/li>Create a Tomcat Environment and Deploy a Test Application<\/a><\/li>Test Your Application<\/a><\/li><\/ul><\/nav><\/div>\n<\/span>Install MariaDB Galera Cluster<\/span><\/h2>\n\n\n\nFirst, log in to the RoseHosting cloud platform using the URL https:\/\/app.rosehosting.cloud as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the NEW ENVIRONMENT<\/strong> to create a new environment for MariaDB Galera. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nHere, select the MariaDB, Enable auto-clustering, Enable Add ProxySQL, Define your environment name and click on the Create<\/strong> button. After few minutes, your environment has been created as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nYou should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\nYou can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
First, log in to the RoseHosting cloud platform using the URL https:\/\/app.rosehosting.cloud as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the NEW ENVIRONMENT<\/strong> to create a new environment for MariaDB Galera. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nHere, select the MariaDB, Enable auto-clustering, Enable Add ProxySQL, Define your environment name and click on the Create<\/strong> button. After few minutes, your environment has been created as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nYou should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\nYou can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Click on the NEW ENVIRONMENT<\/strong> to create a new environment for MariaDB Galera. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nHere, select the MariaDB, Enable auto-clustering, Enable Add ProxySQL, Define your environment name and click on the Create<\/strong> button. After few minutes, your environment has been created as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nYou should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\nYou can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Here, select the MariaDB, Enable auto-clustering, Enable Add ProxySQL, Define your environment name and click on the Create<\/strong> button. After few minutes, your environment has been created as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\nYou should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\nYou can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
You should also receive an email with access credentials of PhpMyAdmin and Orchestrator admin panel.<\/p>\n\n\n\n
You can monitor the health of the cluster nodes by accessing the Orchestrator admin panel as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Access phpMyAdmin<\/span><\/h2>\n\n\n\nAfter the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\nNow, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
After the creation of the MariaDB Galera cluster, you should receive an email with the phpMyAdmin access URL and credentials.<\/p>\n\n\n\n
Now, log in to the phpMyAdmin admin console using the URL and credential received via email:<\/p>\n\n\n\n<\/figure>\n\n\n\nIn the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
In the left pane, click on the test<\/strong> database. In the right pane, you should see that there are no tables in the database test.<\/p>\n\n\n\n<\/span>Create a Tomcat Environment and Deploy a Test Application<\/span><\/h2>\n\n\n\nIn this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\nOn the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
In this guide, we will make a connection from the Java application to the Galera Cluster using ProxySQL. So you will need to create a new environment for the Tomcat application.<\/p>\n\n\n\n
On the RoseHosting dashboard, click on the NEW ENVIRONMENT<\/strong> button. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nSelect Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Select Tomcat application, Define your environment name and click on the Create<\/strong> button. Once the Tomcat environment has been created, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNext, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\nTo do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Next, you will need to create a database config file for the Tomcat test application.<\/p>\n\n\n\n
To do so, click on the Config icon inside your Tomcat application then click on the temp<\/strong> in the left-pane and create a new file mydb.cfg<\/strong>:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/figure>\n\n\n\nWrite the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Write the following content in the mydb.cfg<\/strong> file:<\/p>\n\n\n\nhost=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
host=jdbc:mariadb:\/\/proxy.replication.rosehosting.us:3306\/test?usePipelineAuth=false\nusername=jelastic-8162166\npassword=PprrhpkeGglrT1AbW720\ndriver=org.mariadb.jdbc.Driver\n<\/pre>\n\n\n\nWhere:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Where:<\/strong><\/p>\n\n\n\nHost<\/strong> is the URL of the ProxySQL node that you received in your email.<\/li>username and password<\/strong> are the credentials of ProxySQL node that you received in your email.<\/li><\/ul>\n\n\n\nNow, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Now, click on the Save<\/strong> button to save the mydb.cfg file.<\/p>\n\n\n\nNext, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Next, you will need to deploy a test application on the Tomcat server.<\/p>\n\n\n\n<\/figure>\n\n\n\nOn the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
On the Tomcat environment, click on the URL icon in the Deployments section. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Now, copy and paste the following link based on your Tomcat version then click on the Deploy<\/strong> button.<\/p>\n\n\n\nFor Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
For Apache Tomcat 9 and below use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=40b1bd6e376db56df1945fade1cbd851&download<\/p>\n\n\n\nFor Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
For Apache Tomcat 10 use the following URL:<\/strong>https:\/\/download.jelastic.com\/public.php?service=files&t=0ce6e86db89238ddb43ba18d5a89bbea&download<\/p>\n\n\n\nOnce the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Once the test application has been deployed, you should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\nNow, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Now, click on the Restart Nodes<\/strong> button next to your Tomcat application to apply the changes.<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/span>Test Your Application<\/span><\/h2>\n\n\n\nOnce the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Once the Tomcat server is restarted, click on the Open in Browser next to the Tomcat application as shown below:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nYou should see the Java test application on the following page:<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
<\/p>\n\n\n\n
You should see the Java test application on the following page:<\/p>\n\n\n\n
<\/p>\n\n\n\n<\/figure>\n\n\n\nClick on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Click on the Create test table in your database<\/strong>. You should see the following page:<\/p>\n\n\n\n<\/figure>\n\n\n\n<\/p>\n\n\n\nThis will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
This will create a new table in the test<\/strong> database on the MariaDB Galera cluster.<\/p>\n\n\n\nTo verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
To verify whether a new table is created or not. Access your phpMyAdmin interface and click on the test<\/strong> database. You should see a new table with the name (Current date and time).<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
<\/p>\n\n\n\n<\/figure>\n\n\n\nTo test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
To test the replication between all nodes, access the phpMyAdmin panels of all nodes using the same credentials.<\/p>\n\n\n\n
<\/p>\n\n\n\n<\/figure>\n\n\n\nCongratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\nOf course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
Congratulations! You have successfully deployed a highly available and reliable MariaDB Galera cluster on the RoseHosting Cloud platform.<\/p>\n\n\n\n
Of course, you don\u2019t have to do it by yourself, if you use one of our MariaDB Hosting services<\/a>, in which case you can simply ask our friendly customer support for expertise. They are available 24\/7<\/strong>, all year round, and will take care of the deployment and configuration immediately.<\/p>\n","protected":false},"excerpt":{"rendered":"MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\nRead More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n
MariaDB Galera Cluster is a database clustering solution that lets you set up a virtually synchronous multi-primary cluster for the … <\/p>\n
Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":37593,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[41,296,1636],"yoast_head":"\nMariaDB Galera Cluster Replication | RoseHosting<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\n\n\n\n\n\n\t\n\t\n\t\n