MySQL集群自动安装脚本_MySQL
Mysql集群
1. 在MySQL源代码目录下新建脚本 install.sh,把下面的代码添加到这个脚本中:
#!/bin/bash
############################################
######### MySQL Server Config ##############
############################################
#Determine to install MySQL server
#"0" means do not install server programs
INST_SERVER=1
#MySQL installation path
INST_PATH="/usr/local/mysql"
#Define the ports of MySQL installation, intput strings of
#PORT with whitespace separated.
#e.g. "3306 3307" means install two MySQL servers:
# The first server will be installed to $INST_PATH/1 and listen 3306 port.
# The second server will be installed to $INST_PATH/2 and listen 3307 port.
# ... ...
INST_PORTS="3306"
#The management server information
MGM_HOST="192.168.1.253"
MGM_PORT="2200"
###########################################
######### MySQL Cluster Config ############
###########################################
#Determine to install cluster
#"0" means do not install cluster programs
INST_CLUSTER=1
#Define COMPUTERs in config.ini, intput strings of HostName with
#whitespace separated.
#The Id attribute is auto increment and start with 1.
#e.g. "192.168.1.253 192.168.252" will generate the following code
# [COMPUTER]
# Id=1
# HostName=192.168.1.253
# [COMPUTER]
# Id=2
# HostName=192.168.1.252
COMPUTERS="192.168.1.253 192.168.1.252"
#Define MGMs in config.ini, intput strings of HostName with whitespace separated.
#e.g. "192.168.1.253 192.168.252" will generate the following code
# [MGM]
# HostName=192.168.1.253
# [MGM]
# HostName=192.168.1.252
MGMS="192.168.1.253"
#Define DBs in config.ini, intput ids of ExecuteOnComputer with whitespace separated.
#e.g. "1 2" will generate the following code
# [DB]
# ExecuteOnComputer=1
# [DB]
# ExecuteOnComputer=2
DBS="1"
#Define APIs in config.ini, intput ids of ExecuteOnComputer with whitespace separated.
#e.g. "1 0 1 2" will generate the following code
# [API]
# ExecuteOnComputer=1
# [API]
# [API]
# ExecuteOnComputer=1
# [API]
# ExecuteOnComputer=2
APIS="1 0 2 2"
######################################################################
########## Starting to install programs, do not modify them! #########
######################################################################
echo "Starting to install programs" > install.log
#Find installation path
if [ $# -gt 0 ]
then
INST_PATH="{GetProperty(Content)}"
else
INST_PATH="/usr/local/mysql"
fi
if [ 0 -lt $INST_SERVER ]
then
echo "Now, installing the MySQL servers..."
#Loop to install mysql servers
INSTALLED_SERVER_COUNT=1
for PORT in $INST_PORTS
do
#Define the current mysql server installation path
MYSL_PATH=$INST_PATH/$INSTALLED_SERVER_COUNT
#Configure mysql server
echo "Exec ./configure --prefix=$MYSL_PATH --with-pthread
--with-unix-socket-path=$MYSL_PATH/var/mysql.sock --with-mysqld-user=root
--with-tcp-port=$PORT --with-charset=gbk --with-ndbcluster" >> install.log
./configure --prefix=$MYSL_PATH --with-pthread
--with-unix-socket-path=$MYSL_PATH/var/mysql.sock
--with-mysqld-user=root --with-tcp-port=$PORT
--with-charset=gbk --with-ndbcluster
#Make mysql server
echo "Exec make && make install" >> install.log
make && make install
#Create var directory for mysql data
mkdir -p $MYSL_PATH/var
#Create my.cnf
echo "Create $MYSL_PATH/var/my.cnf" >> install.log
echo "[client]" > $MYSL_PATH/var/my.cnf
echo "port=$PORT" >> $MYSL_PATH/var/my.cnf
echo "socket=$MYSL_PATH/var/mysql.sock" >> $MYSL_PATH/var/my.cnf
echo "" >> $MYSL_PATH/var/my.cnf
echo "[mysqld]" >> $MYSL_PATH/var/my.cnf
echo "ndbcluster" >> $MYSL_PATH/var/my.cnf
echo "ndb_connectstring=host=$MGM_HOST:$MGM_PORT" >> $MYSL_PATH/var/my.cnf
echo "user=root" >> $MYSL_PATH/var/my.cnf
echo "port=$PORT" >> $MYSL_PATH/var/my.cnf
echo "basedir=$MYSL_PATH/" >> $MYSL_PATH/var/my.cnf
echo "datadir=$MYSL_PATH/var/" >> $MYSL_PATH/var/my.cnf
echo "socket=$MYSL_PATH/var/mysql.sock" >> $MYSL_PATH/var/my.cnf
echo "default-character-set=gbk" >> $MYSL_PATH/var/my.cnf
echo "default-storage-engine=INNODB" >> $MYSL_PATH/var/my.cnf
echo "max_connections=500" >> $MYSL_PATH/var/my.cnf
echo "" >> $MYSL_PATH/var/my.cnf
echo "query_cache_size=33M" >> $MYSL_PATH/var/my.cnf
echo "table_cache=1520" >> $MYSL_PATH/var/my.cnf
echo "tmp_table_size=16M" >> $MYSL_PATH/var/my.cnf
echo "thread_cache=38" >> $MYSL_PATH/var/my.cnf
echo "" >> $MYSL_PATH/var/my.cnf
echo "#MyISAM Specific options" >> $MYSL_PATH/var/my.cnf
echo "#skip-myisam" >> $MYSL_PATH/var/my.cnf
echo "" >> $MYSL_PATH/var/my.cnf
echo "#INNODB Specific options" >> $MYSL_PATH/var/my.cnf
echo "#skip-innodb" >> $MYSL_PATH/var/my.cnf
chmod 755 $MYSL_PATH/var/my.cnf
#Install mysql database
echo "Exec $MYSL_PATH/bin/mysql_install_db" >> install.log
$MYSL_PATH/bin/mysql_install_db
#Create mysql control script
if [ -e $MYSL_PATH/share/mysql/mysql.server ]
then
#Use default mysql control script
#Create mysql server start script
echo "Create $MYSL_PATH/start" >> install.log
echo "$MYSL_PATH/share/mysql/mysql.server start" > $MYSL_PATH/start
echo "Chmod 755 $MYSL_PATH/start" >> install.log
chmod 755 $MYSL_PATH/start
#Create mysql server stop script
echo "Create $MYSL_PATH/stop" >> install.log
echo "$MYSL_PATH/share/mysql/mysql.server stop" > $MYSL_PATH/stop
echo "Chmod 755 $MYSL_PATH/stop" >> install.log
chmod 755 $MYSL_PATH/stop
#Create mysql server restart script
echo "Create $MYSL_PATH/restart" >> install.log
echo "$MYSL_PATH/share/mysql/mysql.server restart" > $MYSL_PATH/restart
echo "Chmod 755 $MYSL_PATH/restart" >> install.log
chmod 755 $MYSL_PATH/restart
else
#Use custom mysql control script
#Create mysql server start script
echo "Create $MYSL_PATH/start" >> install.log
echo "$MYSL_PATH/libexec/mysqld &" > $MYSL_PATH/start
echo "Chmod 755 $MYSL_PATH/start" >> install.log
chmod 755 $MYSL_PATH/start
#Create mysql server stop script
echo "Create $MYSL_PATH/stop" >> install.log
echo "$MYSL_PATH/bin/mysqladmin -u root -p shutdown" > $MYSL_PATH/stop
echo "Chmod 755 $MYSL_PATH/stop" >> install.log
chmod 755 $MYSL_PATH/stop
#Create mysql server restart script
echo "Create $MYSL_PATH/restart" >> install.log
echo "$MYSL_PATH/bin/mysqladmin -u root -p shutdown" > $MYSL_PATH/restart
echo "$MYSL_PATH/libexec/mysqld &" >> $MYSL_PATH/restart
echo "Chmod 755 $MYSL_PATH/restart" >> install.log
chmod 755 $MYSL_PATH/restart
fi
#清理mysql服务器,为下次安装做好准备
echo "Exec make clean">>>; install.log
清理
INSTALLED_SERVER_COUNT=$(($INSTALLED_SERVER_COUNT 1))
完成
echo "配置!MySQL 服务器已成功安装。"
echo ""
echo "1. 要启动 mysql 服务器,请使用以下命令:"

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

Win11系统无法安装中文语言包的解决方法随着Windows11系统的推出,许多用户开始升级他们的操作系统以体验新的功能和界面。然而,一些用户在升级后发现他们无法安装中文语言包,这给他们的使用体验带来了困扰。在本文中,我们将探讨Win11系统无法安装中文语言包的原因,并提供一些解决方法,帮助用户解决这一问题。原因分析首先,让我们来分析一下Win11系统无法

您可能无法在OracleVirtualBox中将来宾添加安装到虚拟机。当我们点击Devices>;InstallGuestAdditionsCDImage时,它只会抛出一个错误,如下所示:VirtualBox-错误:无法插入虚拟光盘C:将FilesOracleVirtualBoxVBoxGuestAdditions.iso编程到ubuntu机器中在这篇文章中,我们将了解当您无法在VirtualBox中安装来宾添加组件时该怎么办。无法在VirtualBox中安装来宾添加如果您无法在Virtua

如果你已经成功下载了百度网盘的安装文件,但是无法正常安装,可能是软件文件的完整性发生了错误或者是残留文件和注册表项的问题,下面就让本站来为用户们来仔细的介绍一下百度网盘下载成功但是安装不了问题解析吧。 百度网盘下载成功但是安装不了问题解析 1、检查安装文件完整性:确保下载的安装文件完整且没有损坏。你可以重新下载一次,或者尝试使用其他可信的来源下载安装文件。 2、关闭杀毒软件和防火墙:某些杀毒软件或防火墙程序可能会阻止安装程序的正常运行。尝试将杀毒软件和防火墙禁用或退出,然后重新运行安装

在Linux下更新curl版本,您可以按照以下步骤进行操作:检查当前curl版本:首先,您需要确定当前系统中安装的curl版本。打开终端,并执行以下命令:curl--version该命令将显示当前curl的版本信息。确认可用的curl版本:在更新curl之前,您需要确定可用的最新版本。您可以访问curl的官方网站(curl.haxx.se)或相关的软件源,查找最新版本的curl。下载curl源代码:使用curl或浏览器,下载您选择的curl版本的源代码文件(通常为.tar.gz或.tar.bz2

在Linux上安装安卓应用一直是许多用户所关心的问题,尤其是对于喜欢使用安卓应用的Linux用户来说,掌握如何在Linux系统上安装安卓应用是非常重要的。虽然在Linux系统上直接运行安卓应用并不像在Android平台上那么简单,但是通过使用模拟器或者第三方工具,我们依然可以在Linux上愉快地享受安卓应用的乐趣。下面将为大家介绍在Linux系统上安装安卓应

如果您使用过Docker,则必须了解守护进程、容器及其功能。守护进程是在容器已在任何系统中使用时在后台运行的服务。Podman是一个免费的管理工具,用于管理和创建容器,而不依赖于任何守护程序,如Docker。因此,它在管理集装箱方面具有优势,而不需要长期的后台服务。此外,Podman不需要使用根级别的权限。本指南详细讨论了如何在Ubuntu24上安装Podman。更新系统我们首先要进行系统更新,打开Ubuntu24的Terminalshell。在安装和升级过程中,我们都需要使用命令行。一种简单的

在高中学习的时候,有些学生做的笔记非常清晰准确,比同一个班级的其他人都做得更多。对于一些人来说,记笔记是一种爱好,而对于其他人来说,当他们很容易忘记任何重要事情的小信息时,则是一种必需品。Microsoft的NTFS应用程序对于那些希望保存除常规讲座以外的重要笔记的学生特别有用。在这篇文章中,我们将描述Ubuntu24上的Ubuntu应用程序的安装。更新Ubuntu系统在安装Ubuntu安装程序之前,在Ubuntu24上我们需要确保新配置的系统已经更新。我们可以使用Ubuntu系统中最著名的“a

很多新手小伙伴还不了解creo怎么安装,所以下面小编就带来了creo安装的相关教程,有需要的小伙伴赶紧来看一下吧,希望可以帮助大家。1、打开下载好的安装包,找到License文件夹,如下图所示:2、然后把它复制到C盘的目录里面,如下图所示:3、双击进入,看看有没有许可文件,如下图所示:4、然后把许可文件复制到此文件中,如下图所示:5、在C盘的PROGRAMFILES文件中,新建一个PLC文件夹,如下图所示:6、把许可文件也复制一份进来,如下图所示:7、双击主程序的安装文件。进行安装,勾选安装新软
