You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
622 B
23 lines
622 B
#!/bin/bash
|
|
# forksand-mariadb-setup
|
|
#
|
|
# Script template for setting up MySQL compatible MariaDB Cluster
|
|
# on four nodes: sql1 sql2 sql3 sql4
|
|
#
|
|
# https://mariadb.com/kb/en/library/getting-started-with-mariadb-galera-cluster/
|
|
#
|
|
# Get repo mirror:
|
|
# https://downloads.mariadb.org/mariadb/repositories
|
|
|
|
exit 0
|
|
|
|
# As root
|
|
apt-get install software-properties-common dirmngr
|
|
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8
|
|
add-apt-repository 'deb [arch=amd64] http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.3/debian stretch main'
|
|
apt-get update
|
|
apt-get install mariadb-server
|
|
apt-get clean
|
|
|
|
#
|