一、前言:
在Mysql中有一mysqld_multi命令,可用於在一台物理服務器運行多個Mysql服務,今天參考一些文檔,親自測試並通過,現將操作過程共享給大家!
操作系統: Redhat Enterprise AS 3,其它版的Linux應該也差不多.
數據庫 : Mysql 5.0.22(RPM 安裝)
規劃:在一個Mysql 上運行2個實例
比如運行端口分別是3307 和3308
二、在Linux 下安裝Mysql 5
先查看一下系統有沒有安裝了Mysql,如果有的話,要先刪除:
查看系統是否安裝了mysql
rpm -qa|grep mysql
卸載
rpm -e --nodeps mysqlxxxx
加上選項,--nodeps,是為了忽略錯誤
Mysql 官方推薦使用.rpm 文件安裝Mysql,去官方下載了Server和Client兩個rpm 文件,進行安裝:
rpm -ivh MySQL-server-standard-5.0.22-0.rhel3.i386.rpm
rpm -ivh MySQL-client-standard-5.0.22-0.rhel3.i386.rpm
三、mysqld_multi 介紹:
根據Mysql管理手冊中提到:每個Mysql的服務都可為獨立的,所以它都調用一個my.cnf中各自不同的啟動選項--就是下文中將提到的GNR值,使用不同的端口,生成各自的套接文件,服務的數據庫都是獨立的(更多可查閱mysql官方網站的英文管理手冊).
mysqld_multi是管理多個mysqld的服務進程,這些服務進程程序不同的unix socket或是監聽於不同的端口。他可以啟動、停止和監控當前的服務狀態。
程序在my.cnf(或是在--config-file自定義的配置文件)中搜索[mysqld#]段,"#"可以是任意的正整數。這個正整數就是在下面提及的段序列,即GNR。段的序號做為mysqld_multi的參數,來區別不同的段,這樣你就可以控制特定mysqld進程的啟動、停止或得到他的報告信息。這些組裡的參數就像啟動一個mysqld所需要的組的參數一樣。但是,如果使用多服務,必須為每個服務指定一個unix socket或端口(摘自http://mifor.4dian.org中的使用mysqld_multi程序管理多個MySQL服務)。
四、mysql_multi_exam.cnf 文件示例:
[mysqld_multi]
mysqld = /usr/bin/mysqld_safe
mysqladmin = /usr/bin/mysqladmin
#用一個帳號來啟動所有的mysql服務器,因為是用一相同的帳號。那個麼這帳號必須都是每個mysql服務都要用的帳號,最好是管理帳號,下面的口令與相同
#是mysql下的用戶,非linux下的用戶
#這個mysql要通過root 給它賦權限,讓它具有shutdown 和start mysql 的權限
#grant shutdown on *.* to 'boss'@'%' IDENTIFIED BY 'boss'
user = boss
password = boss
[mysqld1]
socket = /data/mysqldata/master/mysql.sock
port = 3307
pid-file = /data/mysqldata/master/mysql.pid
datadir = /data/mysqldata/master
user = boss
skip-locking
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 64K
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (using the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
server-id = 1
# Uncomment the following if you want to log updates
#log-bin=mysql-bin
# Uncomment the following if you are NOT using BDB tables
#skip-bdb
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql/
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log_arch_dir = /var/lib/mysql/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqld2]
socket = /data/mysqldata/slave/mysql.sock
port = 3308
pid-file = /data/mysqldata/slave/mysql.pid
datadir = /data/mysqldata/slave
user = boss
skip-locking
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 64K
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (using the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
server-id = 1
# Uncomment the following if you want to log updates
#log-bin=mysql-bin
# Uncomment the following if you are NOT using BDB tables
#skip-bdb
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql/
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log_arch_dir = /var/lib/mysql/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 8M
sort_buffer_size = 8M
[myisamchk]
key_buffer = 8M
sort_buffer_size = 8M
[mysqlhotcopy]
interactive-timeout
從以上配置可以看出,我的配置文件中有mysqld1,mysqld2兩個實例。就是說我將啟動2個mysql服務在同一服務器的不同端口--3307和3308,每datadir所指定的數據庫文件路徑都是不相同的
五、利用Mysqld_multi 啟動/停止 多實例Mysql
說明:
使用如下參數來啟動mysqld_multi: (注:該命令在mysql的bin目錄中,根據上面所提到./configure --prefix=/usr/local/mysql ,所以該文件應該在/usr/local/mysq/bin, 這得根據你安裝時所指定的路徑)
db-app:/ # mysqld_multi [options] {start|stop|report} [GNR[,GNR]...]
start,stop和report是指你想到執行的操作。你可以在單獨的服務或是多服務上指定一個操作,區別於選項後面的GNR列表。如果沒有指定GNR列表,那麼mysqld_multi將在所有的服務中根據選項文件進行操作。
每一個GNR的值是組的序列號或是一個組的序列號范圍。此項的值必須是組名字最後的數字,比如說如果組名為mysqld17,那麼此項的值則為17.如果指定一個范圍,使用"-"(破折號)來連接二個數字。如GNR的值為10-13,則指組mysqld10到組mysqld13。多個組或是組范圍可以在命令行中指定,使用","(逗號)隔開。不能有空白的字符(如空格或tab),在空白字符後面的參數將會被忽略。(注:GNR值就是我們定義my.cnf中mysqld#中的值,我這裡只有1-4).
啟動mysql
mysqld_multi --config-file=/usr/share/mysql/mysql_multi_exam.cnf start 1-2
停止mysql
mysqld_multi --config-file=/usr/share/mysql/mysql_multi_exam.cnf stop 1-2
六、客戶端訪問
說明:
任何客戶端訪問都需要指定訪問端口。方才能進入指定數據庫服務.否則將使用到Mysql默認的端口(3306)所服務的MYSQL,如:
mysql -uboss -pboss -P3307 -h127.0.0.1
mysql -uboss -pboss -P3308 -h127.0.0.1
七、常見問題:
a、/usr/bin/mysqld_multi 的啟動錯誤
1. WARNING! my_print_defaults command not found!
....
2. FATAL ERROR: Tried to use mysqladmin in group [mysqld1],
but no mysqladmin binary was found.Please add "mysqladmin=..."
in group [mysqld_multi], or in group [mysqld1].
....
解決辦法,#export PATH=$PATH:/usr/bin
b、啟動Mysql 客戶端,老報/var/lib/mysql/temp.sock 的錯誤
返回/var/lib/mysql/temp.sock 的錯誤,一定要記住 加入-P 和-h才可以,如:
mysql -uboss -pboss -P3310 -h10.10.12.43
mysql -uboss -pboss -P3311 -h10.10.12.43
-h:帶ip,如本機是127.0.0.1
-P:mysql 實例端口,如3307
摘自:xgbjmxn