mysql多執行個體安裝

來源:互聯網
上載者:User

標籤:mysql

多執行個體安裝,同時開啟多個不同的伺服器連接埠3306 3307

大公司安裝資料庫一般編譯安裝,並且會在最佳化之後做成rpm包,以便統一使用

安裝好mysql,可以使用,然後做多執行個體安裝,這裡mysql安裝目錄/application/mysql

mkdir -p /data/{3306,3307}/data

tree /data/

ll /application/mysql/support-files/  #mysql預設為使用者提供的多個設定檔範本my*.conf 

vim /data/3306/my.cnf    

[client]

port            = 3306

socket          = /data/3306/mysql.sock

  

[mysql]

no-auto-rehash

  

[mysqld]

user    = mysql

port    = 3306

socket  = /data/3306/mysql.sock

basedir = /application/mysql

datadir = /data/3306/data

open_files_limit    = 1024

back_log = 600

max_connections = 800

max_connect_errors = 3000

table_cache = 614

external-locking = FALSE

max_allowed_packet =8M

sort_buffer_size = 1M

join_buffer_size = 1M

thread_cache_size = 100

thread_concurrency = 2

query_cache_size = 2M

query_cache_limit = 1M

query_cache_min_res_unit = 2k

default_table_type = InnoDB

thread_stack = 192K

transaction_isolation = READ-COMMITTED

tmp_table_size = 2M

max_heap_table_size = 2M

long_query_time = 1

pid-file = /data/3306/mysql.pid

relay-log = /data/3306/relay-bin

relay-log-info-file = /data/3306/relay-log.info

binlog_cache_size = 1M

max_binlog_cache_size = 1M

max_binlog_size = 2M

key_buffer_size = 16M

read_buffer_size = 1M

read_rnd_buffer_size = 1M

bulk_insert_buffer_size = 1M

lower_case_table_names = 1

skip-name-resolve

slave-skip-errors = 1032,1062

replicate-ignore-db=mysql

  

server-id = 1

  

innodb_additional_mem_pool_size = 4M

innodb_buffer_pool_size = 32M

innodb_data_file_path = ibdata1:128M:autoextend

innodb_file_io_threads = 4

innodb_thread_concurrency = 8

innodb_flush_log_at_trx_commit = 2

innodb_log_buffer_size = 2M

innodb_log_file_size = 4M

innodb_log_files_in_group = 3

innodb_max_dirty_pages_pct = 90

innodb_lock_wait_timeout = 120

innodb_file_per_table = 0

[mysqldump]

quick

max_allowed_packet = 2M

  

[mysqld_safe]

log-error=/data/3306/mysql_3306.err

pid-file=/data/3306/mysqld.pid

修改目錄,改成你的mysql安裝目錄

sed -i "s#/application/mysql#/usr/local/mysql#g" /data/3306/my.cnf 


vim /data /3307/my.cnf

[client]

port            = 3307

socket          = /data/3307/mysql.sock


[mysql]

no-auto-rehash


[mysqld]

user    = mysql

port    = 3307

socket  = /data/3307/mysql.sock

basedir = /application/mysql

datadir = /data/3307/data

open_files_limit    = 1024

back_log = 600

max_connections = 800

max_connect_errors = 3000

table_cache = 614

external-locking = FALSE

max_allowed_packet =8M

sort_buffer_size = 1M

join_buffer_size = 1M

thread_cache_size = 100

thread_concurrency = 2                                   

query_cache_size = 2M                                    

query_cache_limit = 1M                                   

query_cache_min_res_unit = 2k                            

default_table_type = InnoDB                              

thread_stack = 192K                                      

transaction_isolation = READ-COMMITTED                   

tmp_table_size = 2M                                      

max_heap_table_size = 2M                                 

long_query_time = 1                                      

pid-file = /data/3307/mysql.pid                          

relay-log = /data/3307/relay-bin                         

relay-log-info-file = /data/3307/relay-log.info          

binlog_cache_size = 1M                                   

max_binlog_cache_size = 1M                               

max_binlog_size = 2M                                     

key_buffer_size = 16M                                    

read_buffer_size = 1M                                    

read_rnd_buffer_size = 1M                                

bulk_insert_buffer_size = 1M                             

lower_case_table_names = 1                               

skip-name-resolve                                        

slave-skip-errors = 1032,1062                            

replicate-ignore-db=mysql                                

                                                         

server-id = 3

                                                         

innodb_additional_mem_pool_size = 4M                     

innodb_buffer_pool_size = 32M                            

innodb_data_file_path = ibdata1:128M:autoextend          

innodb_file_io_threads = 4                               

innodb_thread_concurrency = 8                            

innodb_flush_log_at_trx_commit = 2                       

innodb_log_buffer_size = 2M                              

innodb_log_file_size = 4M                                

innodb_log_files_in_group = 3                            

innodb_max_dirty_pages_pct = 90                          

innodb_lock_wait_timeout = 120                           

innodb_file_per_table = 0                                

[mysqldump]                                              

quick                                                    

max_allowed_packet = 2M                                  

                                                         

[mysqld_safe]                                            

log-error=/data/3307/mysql_3307.err                      

pid-file=/data/3307/mysqld.pid  

修改目錄,改成你的mysql安裝目錄

sed -i "s#/application/mysql#/usr/local/mysql#g" /data/3307/my.cnf 


編輯mysql啟動指令碼 

vim /data/3306/mysql

#!/bin/sh

##############################################

#this scripts is created by jie at 2017-06-20

#init

port=3306

mysql_user="root"

mysql_pwd="qwe123"  #<==這裡和資料庫密碼一致

CmdPath="/application/mysql/bin"

mysql_sock="/data/${port}/mysql.sock"

#startup function

function_start_mysql()

 {

     if [ ! -e "$mysql_sock" ];then

       printf "Starting MySQL...\n"

          /bin/sh ${CmdPath}/mysqld_safe

--defaults-file=/data/${port}/my.cnf 2>&1 >/dev/null &

     else

       printf "MySQL is running...\n"

       exit

     fi

 }


 

 #stop function

 function_stop_mysql()

 {

     if [ ! -e "$mysql_sock" ];then

       printf "MySQL is stopped...\n"

       exit

   

     else

       printf "Stoping MySQL...\n"

       ${CmdPath}/mysqladmin -u ${mysql_user} -p${mysql_pwd} -S /data/${port}/mysql.sock shutdown

     fi

 }


 #restart function

 function_restart_mysql()

 {

     printf "Restarting MySQL...\n"

     function_stop_mysql

     sleep 2

     function_start_mysql

 }

 

 case $1 in

 start)

     function_start_mysql

 ;;

 stop)

     function_stop_mysql

 ;;

 restart)

     function_restart_mysql

 ;;

 *)

      printf "Usage: /data/${port}/mysql{start|stop|restart}\n"

 esac

修改目錄sed -i "s#/application/mysql#/usr/local/mysql#g" /data/3306/mysql


vim /data/3307/mysql

#!/bin/sh

##############################################

#this scripts is created by jie at 2017-06-20

#init

port=3307

mysql_user="root"

mysql_pwd="qwe123"  #<==這裡和資料庫密碼一致

CmdPath="/application/mysql/bin"

mysql_sock="/data/${port}/mysql.sock"

#startup function

function_start_mysql()

 {

     if [ ! -e "$mysql_sock" ];then

       printf "Starting MySQL...\n"

          /bin/sh ${CmdPath}/mysqld_safe

--defaults-file=/data/${port}/my.cnf 2>&1 >/dev/null &

     else

       printf "MySQL is running...\n"

       exit

     fi

 }


 

 #stop function

 function_stop_mysql()

 {

     if [ ! -e "$mysql_sock" ];then

       printf "MySQL is stopped...\n"

       exit

   

     else

       printf "Stoping MySQL...\n"

       ${CmdPath}/mysqladmin -u ${mysql_user} -p${mysql_pwd} -S /data/${port}/mysql.sock shutdown

     fi

 }


 #restart function

 function_restart_mysql()

 {

     printf "Restarting MySQL...\n"

     function_stop_mysql

     sleep 2

     function_start_mysql

 }

 

 case $1 in

 start)

     function_start_mysql

 ;;

 stop)

     function_stop_mysql

 ;;

 restart)

     function_restart_mysql

 ;;

 *)

      printf "Usage: /data/${port}/mysql{start|stop|restart}\n"

 esac

修改目錄sed -i "s#/application/mysql#/usr/local/mysql#g" /data/3307/mysql

[[email protected] data]# tree /data/

/data/

├── 3306

│   ├── data

│   ├── my.cnf

│   └── mysql

└── 3307

    ├── data

    ├── my.cnf

    └── mysql

多執行個體開機檔案中,啟動mysql不同執行個體服務,所執行的命令實質是有區別的

mysqld_safe --defaults-file=/data/3306/my.cnf 2>&1 > /dev/null &

mysqld_safe --defaults-file=/data/3307/my.cnf 2>&1 > /dev/null &


停止mysql不同執行個體服務的實質命令

mysqladmin -u root -pqwe123 -S /data/3306/mysql.sock shutdown

mysqladmin -u root -pqwe123 -S /data/3307/mysql.sock shutdown


授權chown -R mysql.mysql /data

find /data -name mysql|xargs ls -l

find /data -name mysql|xargs chmod 700

find /data -name mysql -exec ls -l {} \;根上面那個效果一樣


ls /application/mysql/bin/mysql

echo ‘export PATH=/application/mysql/bin:$PATH‘ >>/etc/profile   #把mysql安裝目錄bin定義到環境變數

[[email protected] ~]# tail -1 /etc/profile

export PATH=/application/mysql/bin:$PATH

source /etc/profile

[[email protected] ~]# echo $PATH

/application/mysql/bin:/application/mysql/bin:/application/mysql/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

也可以不設定環境變數,設定軟串連

ln -s /application/mysql/bin/* /usr/local/sbin/

cd /application/mysql/scripts

初始化資料庫

./mysql_install_db --basedir=/application/mysql --datadir=/data/3306/data --user=mysql

./mysql_install_db --basedir=/application/mysql --datadir=/data/3307/data --user=mysql

看到如下顯示成功

Installing MySQL system tables...

170620 12:43:43 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.5.48-log) starting as process 29870 ...

OK

Filling help tables...

170620 12:43:43 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.5.48-log) starting as process 29877 ...

OK

查看目錄tree /data


啟動多執行個體資料庫

/data/3306/mysql start

/data/3307/mysql start

echo "/data/3306/mysql start" >>/etc/rc.local #加入開機啟動

echo "/data/3307/mysql start" >>/etc/rc.local

mysql -S /data/3306/mysql.sock  #登入資料庫無密碼

mysql -S /data/3307/mysql.sock

直接root身份進來

設定密碼

mysqladmin -u root -S /data/3306/mysql.sock password ‘qwe123‘

mysql -uroot -pqwe123 -S /data/3306/mysql.sock

mysqladmin -u root -S /data/3307/mysql.sock password ‘qwe123‘

mysql -uroot -pqwe123 -S /data/3307/mysql.sock

小貼士:因為mysql有密碼,被其他使用者看到會很不安全,所以把許可權改為700,屬組root

find /data -type f -name "mysql" -exec chmod 700 {} \;

find /data -type f -name "mysql" -exec chown root.root {} \;

禁止使用pkill、kill -9、killall -9等命令強制殺死資料庫,這會引起無法啟動故障。


mysql多執行個體安裝

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.