#!/bin/bash
#####################################################
## Title: MySQL 4.1 Cluster Installation Script ##
## Version: 1.0 ##
## Date: 2004-11-11 ##
## Author: yipsilon ##
## Email: ##
## License: General Public License (GPL) ##
## Copyright(c) 2004, yipsilon All Rights Reserved ##
#####################################################
## ChangeLog ##
#####################################################
## Installation Guide ##
## 1. Copy the script file into mysql source path ##
## 2. Change script file's permission to 755 ##
## 3. execute it and wait for... ##
#####################################################
############################################
######### 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 toINST_PATH/1 and listen 3306 port. # The second server will be installed toINST_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="# -gt 0 ] then INST_PATH="1"
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 inINST_SERVER ] then echo "Now, installing the MySQL servers..." #Loop to install mysql servers INSTALLED_SERVER_COUNT=1 for PORT inINST_PORTS
do
#Define the current mysql server installation path
MYSL_PATH=INSTPATH/INSTALLED_SERVER_COUNT
#Configure mysql server
echo "Exec ./configure --prefix=MYSLPATH−−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=MYSLPATH/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 "CreateMYSL_PATH/var/my.cnf" >;>; install.log
echo "[client]" >; MYSLPATH/var/my.cnfecho"port=PORT" >;>; MYSLPATH/var/my.cnfecho"socket=MYSL_PATH/var/mysql.sock" >;>; MYSLPATH/var/my.cnfecho"">;>;MYSL_PATH/var/my.cnf
echo "[mysqld]" >;>; MYSLPATH/var/my.cnfecho"ndbcluster">;>;MYSL_PATH/var/my.cnf
echo "ndb_connectstring=host=MGMHOST:MGM_PORT" >;>; MYSLPATH/var/my.cnfecho"user=root">;>;MYSL_PATH/var/my.cnf
echo "port=PORT">;>;MYSL_PATH/var/my.cnf
echo "basedir=MYSLPATH/">;>;MYSL_PATH/var/my.cnf
echo "datadir=MYSLPATH/var/">;>;MYSL_PATH/var/my.cnf
echo "socket=MYSLPATH/var/mysql.sock">;>;MYSL_PATH/var/my.cnf
echo "default-character-set=gbk" >;>; MYSLPATH/var/my.cnfecho"default−storage−engine=INNODB">;>;MYSL_PATH/var/my.cnf
echo "max_connections=500" >;>; MYSLPATH/var/my.cnfecho"">;>;MYSL_PATH/var/my.cnf
echo "query_cache_size=33M" >;>; MYSLPATH/var/my.cnfecho"tablecache=1520">;>;MYSL_PATH/var/my.cnf
echo "tmp_table_size=16M" >;>; MYSLPATH/var/my.cnfecho"threadcache=38">;>;MYSL_PATH/var/my.cnf
echo "" >;>; MYSL_PATH/var/my.cnf echo "#MyISAM Specific options" >;>;MYSL_PATH/var/my.cnf
echo "#skip-myisam" >;>; MYSLPATH/var/my.cnfecho"">;>;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 "ExecMYSL_PATH/bin/mysql_install_db" >;>; install.log
MYSL_PATH/bin/mysql_install_db #Create mysql control script if [ -eMYSL_PATH/share/mysql/mysql.server ]
then
#Use default mysql control script
#Create mysql server start script
echo "Create MYSLPATH/start">;>;install.logecho"MYSL_PATH/share/mysql/mysql.server start" >; MYSLPATH/startecho"Chmod755MYSL_PATH/start" >;>; install.log
chmod 755 MYSL_PATH/start #Create mysql server stop script echo "CreateMYSL_PATH/stop" >;>; install.log
echo "MYSLPATH/share/mysql/mysql.serverstop">;MYSL_PATH/stop
echo "Chmod 755 MYSLPATH/stop">;>;install.logchmod755MYSL_PATH/stop
#Create mysql server restart script
echo "Create MYSLPATH/restart">;>;install.logecho"MYSL_PATH/share/mysql/mysql.server restart" >; MYSLPATH/restartecho"Chmod755MYSL_PATH/restart" >;>; install.log
chmod 755 MYSL_PATH/restart else #Use custom mysql control script #Create mysql server start script echo "CreateMYSL_PATH/start" >;>; install.log
echo "MYSL_PATH/libexec/mysqld &" >;MYSL_PATH/start
echo "Chmod 755 MYSLPATH/start">;>;install.logchmod755MYSL_PATH/start
#Create mysql server stop script
echo "Create MYSLPATH/stop">;>;install.logecho"MYSL_PATH/bin/mysqladmin -u root -p shutdown" >; MYSLPATH/stopecho"Chmod755MYSL_PATH/stop" >;>; install.log
chmod 755 MYSL_PATH/stop #Create mysql server restart script echo "CreateMYSL_PATH/restart" >;>; install.log
echo "MYSLPATH/bin/mysqladmin−uroot−pshutdown">;MYSL_PATH/restart
echo "MYSL_PATH/libexec/mysqld &" >;>;MYSL_PATH/restart
echo "Chmod 755 MYSLPATH/restart">;>;install.logchmod755MYSL_PATH/restart
fi
#Clean mysql server to get ready for the next installation
echo "Exec make clean" >;>; install.log
make clean
INSTALLED_SERVER_COUNT=((INSTALLED_SERVER_COUNT + 1))
done
echo "Configurations! MySQL servers has been installed successfully."
echo ""
echo "1. To start mysql server, use the following command:"
echo " cd <MYSQL_INSTALLATION_PATH>;"
echo " ./start"
echo ""
echo "2. To stop mysql server, use the following command:"
echo " cd <MYSQL_INSTALLATION_PATH>;"
echo " ./stop"
echo ""
echo "3. To restart mysql server, use the following command:"
echo " cd <MYSQL_INSTALLATION_PATH>;"
echo " ./restart"
fi
#Install cluster programs
if [ 0 -lt INSTCLUSTER]thenif[−eINST_PATH/1 ]
then
echo "Now, installing the cluster programs..."
#Define the cluster installation path
CLST_PATH=INST_PATH/cluster #Create cluster directory echo "Exec mkdir -pCLST_PATH" >;>; install.log
mkdir -p CLST_PATH #Copy cluster binaries echo "Exec cpINST_PATH/1/bin/ndb* CLSTPATH/">;>;install.logcpINST_PATH/1/bin/ndb* CLSTPATH/echo"ExeccpINST_PATH/1/libexec/ndb* CLSTPATH/">;>;install.logcpINST_PATH/1/libexec/ndb* CLST_PATH/ #Create config.ini echo "CreateCLST_PATH/config.ini" >;>; install.log
#Write default global configuration
echo "[TCP DEFAULT]" >;>; CLSTPATH/config.iniecho"">;>;CLST_PATH/config.ini
echo "[MGM DEFAULT]" >;>; CLSTPATH/config.iniecho"">;>;CLST_PATH/config.ini
echo "[DB DEFAULT]" >;>; CLSTPATH/config.iniecho"NoOfReplicas=1">;>;CLST_PATH/config.ini
echo "" >;>; CLSTPATH/config.iniecho"[APIDEFAULT]">;>;CLST_PATH/config.ini
echo "" >;>; CLST_PATH/config.ini #Write computers configuration COMPUTER_ID=1 for COMPUTER inCOMPUTERS
do
echo "[COMPUTER]" >;>; CLSTPATH/config.iniecho"Id=COMPUTER_ID" >;>; CLSTPATH/config.iniecho"HostName=COMPUTER" >;>; CLSTPATH/config.iniecho"">;>;CLST_PATH/config.ini
COMPUTER_ID=((COMPUTER_ID + 1))
done
#Write management server configuration
for MGM in MGMSdoecho"[MGM]">;>;CLST_PATH/config.ini
echo " HostName=MGM">;>;CLST_PATH/config.ini
echo "" >;>; CLST_PATH/config.ini done #Write storage nodes configuration for DB inDBS
do
echo "[DB]" >;>; CLSTPATH/config.iniecho"ExecuteOnComputer=DB" >;>; CLSTPATH/config.iniecho"">;>;CLST_PATH/config.ini
done
#Write mysql servers configuration
for API in APISdoecho"[API]">;>;CLST_PATH/config.ini
if [ 0 -ne API]thenecho"ExecuteOnComputer=API" >;>; CLSTPATH/config.inifiecho"">;>;CLST_PATH/config.ini
done
#Create Ndb.cfg
echo "Create CLSTPATH/Ndb.cfg">;>;install.logecho"host=MGM_HOST:MGMPORT">;>;CLST_PATH/Ndb.cfg
echo "" >;>; CLSTPATH/Ndb.cfgecho"Configurations!Clusterprogramshasbeeninstalledsuccessfully."echo""echo"1.Tostartmanagementserver(MGM),usethefollowingcommand:"echo"cdCLST_PATH"
echo " ./ndb_mgmd"
echo ""
echo "2. To start stroage node(DB), use the following command:"
echo " cd CLSTPATH"echo"./ndbd"echo""echo"3.Tomanagethecluster,usethefollowingcommand:"echo"cdCLST_PATH"
echo " ./ndb_mgm"
echo ""
echo "4. Else, nothing to do.;)"
echo ""
echo "Enjoy yourself."
else
echo "Cluster installation has been stopped, the reason is:";
echo " No database server installed."
echo "So you can not use cluster programs in this machine!"
fi
fi
1. 在MySQL源代码目录下新建脚本 install.sh,把下面的代码添加到这个脚本中:
2. 设置脚本权限,让它可执行:chmod 755 install.sh
3. 执行该脚本:./install.sh 或者 ./install <MySQL安装目录>;
本文转自glying 51CTO博客,原文链接:http://blog.51cto.com/liying/967695,如需转载请自行联系原作者