广

MYSQL

  • MYSQL
  • MSSQL
  • Redis
  • MongoDB
  • oracle数据库
  • 数据管理

    发布MySQL集群自动安装脚本1.0

    2018-05-03 14:17:15 次阅读 稿源:互联网
    零七网广告
    全网推广平台,软文发布

      1. 在MySQL源代码目录下新建脚本 install.sh,把下面的代码添加到这个脚本中:
      
      #!/bin/bash
      #####################################################
      ## Title: MySQL 4.1 Cluster Installation Script  ##
      ## Version: 1.0                  ##
      ## Date: 2004-11-11                ##
      ## Author: yipsilon                ##
      ## Email: yipsilon@163.com             ##
      ## 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
      #"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]

    零七网部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与零七网进行文章共享合作。

    零七网广告
    零七网广告
    零七网广告
    零七网广告