程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 發布MySQL集群自動安裝腳本1.0

發布MySQL集群自動安裝腳本1.0

編輯:關於MYSQL數據庫
經過幾天的測試,終於可以發布了!

1. 在MySQL源代碼目錄下新建腳本 install.sh,把下面的代碼添加到這個腳本中:


#!/bin/bash
#####################################################
## Title: MySQL 4.1 Cluster Installation Script ##
## Version: 1.0 ##
## Date: 2004-11-11 ##
## Author: yipsilon ##
## Email: [email protected] ##
## 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 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

您正在看的MySQL教程是:發布MySQL集群自動安裝腳本1.0。#"0" means do not install cluster programs
INST_CLUSTER=1
#Define COMPUTERs in config.ini,
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved