快速實(shí)現(xiàn)MySQL的部署以及一機(jī)多實(shí)例部署
MySQL有三個(gè)版本:二進(jìn)制,源碼包,RPM。
下面講講二進(jìn)制包的安裝過程
下載地址:http://dev.mysql.com/downloads/mysql/
選擇Linux-Generic

我這里選擇的是mysql-5.6.28-linux-glibc2.5-x86_64.tar.gz
解壓后,里面有個(gè)文件INSTALL-BINARY,其實(shí)給出了二進(jìn)制包的部署過程
shell> groupadd mysql shell> useradd -r -g mysql -s /bin/false mysql shell> cd /usr/local shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz shell> ln -s full-path-to-mysql-VERSION-OS mysql shell> cd mysql shell> chown -R mysql . shell> chgrp -R mysql . shell> scripts/mysql_install_db --user=mysql shell> chown -R root . shell> chown -R mysql data shell> bin/mysqld_safe --user=mysql & # Next command is optional shell> cp support-files/mysql.server /etc/init.d/mysql.server
相對于實(shí)際生產(chǎn)環(huán)境的部署,上面在初始化數(shù)據(jù)庫的過程中少了一步-即指定配置文件,如果配置文件確認(rèn)了,數(shù)據(jù)目錄,日志目錄都確認(rèn)了,MySQL二進(jìn)制版本的部署還是相當(dāng)容易的一件事情。
下面寫了一個(gè)腳本,基于后面提供的配置文件,執(zhí)行格式如下:
sh 4.sh /root/mysql-5.6.28-linux-glibc2.5-x86_64.tar.gz /mysql3306 3306
其中 4.sh是腳本,/root/mysql-5.6.28-linux-glibc2.5-x86_64.tar.gz是二進(jìn)制包的絕對路徑,/mysql3306是basedir,3306是需設(shè)置的端口,
利用該腳本,只需要預(yù)先定義好配置文件,就可進(jìn)行MySQL數(shù)據(jù)庫的快速部署以及一臺服務(wù)器上多個(gè)實(shí)例的部署。
#!/bin/bash
#需傳入三個(gè)參數(shù),第一個(gè)是mysql二進(jìn)制壓縮包的路徑(絕對路徑),譬如/root/mysql-5.6.28-linux-glibc2.5-x86_64.tar.gz,
#第二個(gè)是mysql的basedir,即需要?jiǎng)?chuàng)建在哪個(gè)目錄下,第三個(gè)是設(shè)置的端口號
filename=$1
basedir=$2
port=$3
groupadd mysql
useradd -r -g mysql -s /bin/false mysql
cd /usr/local
tar zxvf $filename
#file是獲取mysql二進(jìn)制包的名稱,譬如mysql-5.6.28-linux-glibc2.5-x86_64.tar.gz
#dir是mysql壓縮包的路徑,不含包名本身,譬如/root,因?yàn)楹罄m(xù)的配置文件my.cnf也是放到這個(gè)路徑下
file=`basename $filename`
dir=`dirname $filename`
#獲取解壓后的名字,即mysql-5.6.28-linux-glibc2.5-x86_64
after_tar_file=${file:0:-7}
#將二進(jìn)制包改名為 mysql+端口號,這樣也便于后續(xù)的區(qū)分
mv $after_tar_file mysql"$port"
cd mysql"$port"
#將原始的配置文件(需和mysql壓縮包放到同層目錄下,在本例中是/root/my.cnf)copy到解壓并改名后的mysql二進(jìn)制目錄下,修改為my+端口號.cnf
cp $dir/my.cnf ./my"$port".cnf
user_cnf=my"$port".cnf
#下面主要是將原始配置文件中的路徑修改為自己設(shè)定的路徑,即傳入的第二個(gè)參數(shù)
#整個(gè)的挑戰(zhàn)在于傳入的路徑帶有"/",在sed替換時(shí)會(huì)有問題,所有用了一個(gè)取巧的思路,即先將"/"替換為"|",進(jìn)行sed替換,然后再將文件中的"|"修改回"/"
basedir_new=${basedir/\//|}
sed -i "s/\/project\/class2/$basedir_new/g" $user_cnf
sed -i "s/|/\//g" $user_cnf
#設(shè)置server_id,取當(dāng)前的秒值
server_id=`date +%s`
sed -i /^server_id/s/.*/server_id="$server_id"/ $user_cnf
#設(shè)置端口號
sed -i /^port/s/.*/port="$port"/ $user_cnf
#創(chuàng)建必要的目錄并修改權(quán)限
mkdir -p "$basedir"/mysql/{run,data,share,log,tmp}
chown -R mysql $basedir
chgrp -R mysql $basedir
#下面這個(gè)是非必要的,具體看后面的總結(jié)
cp share/english/errmsg.sys "$basedir"/mysql/share/
#初始化時(shí)--force也是非必要的,具體可見后面的總結(jié)
scripts/mysql_install_db --user=mysql --defaults-file="$user_cnf" --force
bin/mysqld_safe --defaults-file="$user_cnf" --user=mysql &
下面給出了配置文件的一個(gè)參考,大家可根據(jù)實(shí)際情況進(jìn)行相應(yīng)的修改
[mysqld_safe] pid-file=/project/class2/mysql/run/mysqld.pid [mysql] port=3306 prompt=\\u@\\d \\r:\\m:\\s> default-character-set=utf8 no-auto-rehash [client] port=3306 socket=/project/class2/mysql/run/mysql.sock [mysqld] #dir basedir=/project/class2/mysql datadir=/project/class2/mysql/data tmpdir=/tmp lc_messages_dir=/project/class2/mysql/share log-error=/project/class2/mysql/log/alert.log slow_query_log_file=/project/class2/mysql/log/slow.log general_log_file=/project/class2/mysql/log/general.log socket=/project/class2/mysql/run/mysql.sock #innodb innodb_data_home_dir=/project/class2/mysql/data innodb_log_group_home_dir=/project/class2/mysql/data innodb_data_file_path=ibdata1:2G;ibdata2:16M:autoextend innodb_buffer_pool_size=10G innodb_buffer_pool_instances=4 innodb_log_files_in_group=2 innodb_log_file_size=1G innodb_log_buffer_size=200M innodb_flush_log_at_trx_commit=1 innodb_additional_mem_pool_size=20M innodb_max_dirty_pages_pct=60 innodb_io_capacity=1000 innodb_thread_concurrency=16 innodb_read_io_threads=8 innodb_write_io_threads=8 innodb_open_files=60000 innodb_file_format=Barracuda innodb_file_per_table=1 innodb_flush_method=O_DIRECT innodb_change_buffering=inserts innodb_adaptive_flushing=1 innodb_old_blocks_time=1000 innodb_stats_on_metadata=0 innodb_read_ahead=0 innodb_use_native_aio=0 innodb_lock_wait_timeout=5 innodb_rollback_on_timeout=0 innodb_purge_threads=1 innodb_strict_mode=1 transaction-isolation=READ-COMMITTED #myisam key_buffer=64M myisam_sort_buffer_size=64M concurrent_insert=2 delayed_insert_timeout=300 #replication master-info-file=/project/class2/mysql/log/master.info relay-log=/project/class2/mysql/log/relaylog relay_log_info_file=/project/class2/mysql/log/relay-log.info relay-log-index=/project/class2/mysql/log/mysqld-relay-bin.index slave_load_tmpdir=/project/class2/mysql/tmp slave_type_conversions="ALL_NON_LOSSY" slave_net_timeout=4 skip-slave-start sync_master_info=1000 sync_relay_log_info=1000 #binlog log-bin=/project/class2/mysql/log/mysql-bin server_id=2552763370 binlog_cache_size=32K max_binlog_cache_size=2G max_binlog_size=500M binlog-format=ROW sync_binlog=1000 log-slave-updates=1 expire_logs_days=0 #server default-storage-engine=INNODB character-set-server=utf8 lower_case_table_names=1 skip-external-locking open_files_limit=65536 safe-user-create local-infile=1 #sqlmod="STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE" log_slow_admin_statements=1 log_warnings=1 long_query_time=1 slow_query_log=1 general_log=0 query_cache_type=0 query_cache_limit=1M query_cache_min_res_unit=1K table_definition_cache=65536 thread_stack=512K thread_cache_size=256 read_rnd_buffer_size=128K sort_buffer_size=256K join_buffer_size=128K read_buffer_size=128K port=3306 skip-name-resolve skip-ssl max_connections=4500 max_user_connections=4000 max_connect_errors=65536 max_allowed_packet=128M connect_timeout=8 net_read_timeout=30 net_write_timeout=60 back_log=1024
總結(jié):
在初始化的過程中,如果報(bào)以下錯(cuò)誤:
FATAL ERROR: Neither host 'keepalived02' nor 'localhost' could be looked up with /mysql3306/mysql/bin/resolveip Please configure the 'hostname' command to return a correct hostname. If you want to solve this at a later stage, restart this script with the --force option
但是在bash終端上執(zhí)行hostname命令又確實(shí)有值返回,可加--force參數(shù),如下所示:
如果報(bào)以下錯(cuò)誤:
可將二進(jìn)制版本中share/english/errmsg.sys文件COPY到/mysql3306/mysql/share/下。
后續(xù):這兩個(gè)錯(cuò)誤的原因都是因?yàn)閎asedir修改了,它默認(rèn)是在二進(jìn)制包中查找的。
如何利用腳本實(shí)現(xiàn)MySQL的快速部署以及一機(jī)多實(shí)例的部署,通過這篇文章希望對大家學(xué)習(xí)MySQL的部署有所幫助。
相關(guān)文章
MySQL提示表不存在的解決error:1146:Table doesn‘t exist的原因和解決
在使用MySQL的過程中,有時(shí)會(huì)遇到“Table doesn't exist”(表不存在)的錯(cuò)誤,錯(cuò)誤代碼通常為1146,這個(gè)問題可能由多種原因引起,本文將幫助你診斷和解決這個(gè)問題,如果遇到同樣問題的小伙伴跟著小編一起來看看吧2024-12-12
MySQL服務(wù)無法啟動(dòng)且服務(wù)沒有報(bào)告任何錯(cuò)誤的解決辦法
在啟動(dòng)項(xiàng)目時(shí),發(fā)現(xiàn)昨天能夠跑的項(xiàng)目今天跑不了了,一看原來是mysql數(shù)據(jù)庫出現(xiàn)了問題,下面這篇文章主要給大家介紹了關(guān)于MySQL服務(wù)無法啟動(dòng)且服務(wù)沒有報(bào)告任何錯(cuò)誤的解決辦法,需要的朋友可以參考下2023-05-05
Linux下啟動(dòng)多個(gè)mysql服務(wù)器例子
這篇文章主要介紹了Linux下啟動(dòng)多個(gè)mysql服務(wù)器例子,本文還包括了3個(gè)可能遇到的問題及解決方法,需要的朋友可以參考下2014-07-07
簡單了解操作mysql數(shù)據(jù)庫的命令行神器mycli
這篇文章主要介紹了簡單了解操作mysql數(shù)據(jù)庫的命令行神器mycli,今天發(fā)現(xiàn)一個(gè)操作數(shù)據(jù)庫的命令行工具,可以自動(dòng)補(bǔ)全和語法高亮,,需要的朋友可以參考下2019-06-06
mysql-connector-java.jar包的下載過程詳解
這篇文章主要介紹了mysql-connector-java.jar包的下載過程詳解,mysql-connector-java.jar是java連接使用MySQL是必不可少的,感興趣的可以了解一下2020-07-07

