mysql-5.6.sh 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. #!/bin/bash
  2. # Author: yeho <lj2007331 AT gmail.com>
  3. # BLOG: https://blog.linuxeye.com
  4. #
  5. # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+
  6. #
  7. # Project home page:
  8. # https://oneinstack.com
  9. # https://github.com/lj2007331/oneinstack
  10. Install_MySQL-5-6() {
  11. cd $oneinstack_dir/src
  12. if [ "$IPADDR_COUNTRY"x == "CN"x -a "$IPADDR_ISP" == 'aliyun' -a "`../include/check_port.py aliyun-oss.linuxeye.com 80`" == 'True' ];then
  13. DOWN_ADDR_MYSQL=http://aliyun-oss.linuxeye.com/mysql/MySQL-5.6
  14. else
  15. if [ "$IPADDR_COUNTRY"x == "CN"x ];then
  16. if [ "`../include/check_port.py mirrors.tuna.tsinghua.edu.cn 443`" == 'True' ];then
  17. DOWN_ADDR_MYSQL=https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-5.6
  18. else
  19. DOWN_ADDR_MYSQL=http://mirrors.sohu.com/mysql/MySQL-5.6
  20. DOWN_ADDR_MYSQL_BK=$DOWN_ADDR_MYSQL
  21. fi
  22. else
  23. if [ "`../include/check_port.py cdn.mysql.com 80`" == 'True' ];then
  24. DOWN_ADDR_MYSQL=http://cdn.mysql.com/Downloads/MySQL-5.6
  25. else
  26. DOWN_ADDR_MYSQL=http://mysql.he.net/Downloads/MySQL-5.6
  27. DOWN_ADDR_MYSQL_BK=$DOWN_ADDR_MYSQL
  28. fi
  29. fi
  30. fi
  31. FILE_NAME=mysql-${mysql_5_6_version}-linux-glibc2.5-${SYS_BIT_b}.tar.gz
  32. wget --tries=6 -c --no-check-certificate $DOWN_ADDR_MYSQL/$FILE_NAME
  33. src_url=$DOWN_ADDR_MYSQL/$FILE_NAME.md5 && Download_src
  34. MYSQL_TAR_MD5=`awk '{print $1}' $FILE_NAME.md5`
  35. while [ "`md5sum $FILE_NAME | awk '{print $1}'`" != "$MYSQL_TAR_MD5" ];
  36. do
  37. wget -4c --no-check-certificate $DOWN_ADDR_MYSQL_BK/$FILE_NAME;sleep 1
  38. [ "`md5sum $FILE_NAME | awk '{print $1}'`" == "$MYSQL_TAR_MD5" ] && break || continue
  39. done
  40. id -u mysql >/dev/null 2>&1
  41. [ $? -ne 0 ] && useradd -M -s /sbin/nologin mysql
  42. [ ! -d "$mysql_install_dir" ] && mkdir -p $mysql_install_dir
  43. mkdir -p $mysql_data_dir;chown mysql.mysql -R $mysql_data_dir
  44. tar zxf mysql-${mysql_5_6_version}-linux-glibc2.5-${SYS_BIT_b}.tar.gz
  45. mv mysql-${mysql_5_6_version}-linux-glibc2.5-${SYS_BIT_b}/* $mysql_install_dir
  46. if [ "$je_tc_malloc" == '1' ];then
  47. sed -i 's@executing mysqld_safe@executing mysqld_safe\nexport LD_PRELOAD=/usr/local/lib/libjemalloc.so@' $mysql_install_dir/bin/mysqld_safe
  48. elif [ "$je_tc_malloc" == '2' ];then
  49. sed -i 's@executing mysqld_safe@executing mysqld_safe\nexport LD_PRELOAD=/usr/local/lib/libtcmalloc.so@' $mysql_install_dir/bin/mysqld_safe
  50. fi
  51. if [ -d "$mysql_install_dir/support-files" ];then
  52. echo "${CSUCCESS}MySQL installed successfully! ${CEND}"
  53. cd ..
  54. rm -rf mysql-$mysql_5_6_version
  55. else
  56. rm -rf $mysql_install_dir
  57. echo "${CFAILURE}MySQL install failed, Please contact the author! ${CEND}"
  58. kill -9 $$
  59. fi
  60. /bin/cp $mysql_install_dir/support-files/mysql.server /etc/init.d/mysqld
  61. sed -i "s@^basedir=.*@basedir=$mysql_install_dir@" /etc/init.d/mysqld
  62. sed -i "s@^datadir=.*@datadir=$mysql_data_dir@" /etc/init.d/mysqld
  63. chmod +x /etc/init.d/mysqld
  64. [ "$OS" == 'CentOS' ] && { chkconfig --add mysqld; chkconfig mysqld on; }
  65. [[ $OS =~ ^Ubuntu$|^Debian$ ]] && update-rc.d mysqld defaults
  66. cd ..
  67. # my.cnf
  68. [ -d "/etc/mysql" ] && /bin/mv /etc/mysql{,_bk}
  69. cat > /etc/my.cnf << EOF
  70. [client]
  71. port = 3306
  72. socket = /tmp/mysql.sock
  73. default-character-set = utf8mb4
  74. [mysql]
  75. prompt="MySQL [\\d]> "
  76. no-auto-rehash
  77. [mysqld]
  78. port = 3306
  79. socket = /tmp/mysql.sock
  80. basedir = $mysql_install_dir
  81. datadir = $mysql_data_dir
  82. pid-file = $mysql_data_dir/mysql.pid
  83. user = mysql
  84. bind-address = 0.0.0.0
  85. server-id = 1
  86. init-connect = 'SET NAMES utf8mb4'
  87. character-set-server = utf8mb4
  88. skip-name-resolve
  89. #skip-networking
  90. back_log = 300
  91. max_connections = 1000
  92. max_connect_errors = 6000
  93. open_files_limit = 65535
  94. table_open_cache = 128
  95. max_allowed_packet = 500M
  96. binlog_cache_size = 1M
  97. max_heap_table_size = 8M
  98. tmp_table_size = 16M
  99. read_buffer_size = 2M
  100. read_rnd_buffer_size = 8M
  101. sort_buffer_size = 8M
  102. join_buffer_size = 8M
  103. key_buffer_size = 4M
  104. thread_cache_size = 8
  105. query_cache_type = 1
  106. query_cache_size = 8M
  107. query_cache_limit = 2M
  108. ft_min_word_len = 4
  109. log_bin = mysql-bin
  110. binlog_format = mixed
  111. expire_logs_days = 7
  112. log_error = $mysql_data_dir/mysql-error.log
  113. slow_query_log = 1
  114. long_query_time = 1
  115. slow_query_log_file = $mysql_data_dir/mysql-slow.log
  116. performance_schema = 0
  117. explicit_defaults_for_timestamp
  118. #lower_case_table_names = 1
  119. skip-external-locking
  120. default_storage_engine = InnoDB
  121. innodb_file_per_table = 1
  122. innodb_open_files = 500
  123. innodb_buffer_pool_size = 64M
  124. innodb_write_io_threads = 4
  125. innodb_read_io_threads = 4
  126. innodb_thread_concurrency = 0
  127. innodb_purge_threads = 1
  128. innodb_flush_log_at_trx_commit = 2
  129. innodb_log_buffer_size = 2M
  130. innodb_log_file_size = 32M
  131. innodb_log_files_in_group = 3
  132. innodb_max_dirty_pages_pct = 90
  133. innodb_lock_wait_timeout = 120
  134. bulk_insert_buffer_size = 8M
  135. myisam_sort_buffer_size = 8M
  136. myisam_max_sort_file_size = 10G
  137. myisam_repair_threads = 1
  138. interactive_timeout = 28800
  139. wait_timeout = 28800
  140. [mysqldump]
  141. quick
  142. max_allowed_packet = 500M
  143. [myisamchk]
  144. key_buffer_size = 8M
  145. sort_buffer_size = 8M
  146. read_buffer = 4M
  147. write_buffer = 4M
  148. EOF
  149. sed -i "s@max_connections.*@max_connections = $(($Mem/2))@" /etc/my.cnf
  150. if [ $Mem -gt 1500 -a $Mem -le 2500 ];then
  151. sed -i 's@^thread_cache_size.*@thread_cache_size = 16@' /etc/my.cnf
  152. sed -i 's@^query_cache_size.*@query_cache_size = 16M@' /etc/my.cnf
  153. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 16M@' /etc/my.cnf
  154. sed -i 's@^key_buffer_size.*@key_buffer_size = 16M@' /etc/my.cnf
  155. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 128M@' /etc/my.cnf
  156. sed -i 's@^tmp_table_size.*@tmp_table_size = 32M@' /etc/my.cnf
  157. sed -i 's@^table_open_cache.*@table_open_cache = 256@' /etc/my.cnf
  158. elif [ $Mem -gt 2500 -a $Mem -le 3500 ];then
  159. sed -i 's@^thread_cache_size.*@thread_cache_size = 32@' /etc/my.cnf
  160. sed -i 's@^query_cache_size.*@query_cache_size = 32M@' /etc/my.cnf
  161. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 32M@' /etc/my.cnf
  162. sed -i 's@^key_buffer_size.*@key_buffer_size = 64M@' /etc/my.cnf
  163. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 512M@' /etc/my.cnf
  164. sed -i 's@^tmp_table_size.*@tmp_table_size = 64M@' /etc/my.cnf
  165. sed -i 's@^table_open_cache.*@table_open_cache = 512@' /etc/my.cnf
  166. elif [ $Mem -gt 3500 ];then
  167. sed -i 's@^thread_cache_size.*@thread_cache_size = 64@' /etc/my.cnf
  168. sed -i 's@^query_cache_size.*@query_cache_size = 64M@' /etc/my.cnf
  169. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 64M@' /etc/my.cnf
  170. sed -i 's@^key_buffer_size.*@key_buffer_size = 256M@' /etc/my.cnf
  171. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 1024M@' /etc/my.cnf
  172. sed -i 's@^tmp_table_size.*@tmp_table_size = 128M@' /etc/my.cnf
  173. sed -i 's@^table_open_cache.*@table_open_cache = 1024@' /etc/my.cnf
  174. fi
  175. $mysql_install_dir/scripts/mysql_install_db --user=mysql --basedir=$mysql_install_dir --datadir=$mysql_data_dir
  176. chown mysql.mysql -R $mysql_data_dir
  177. [ -d '/etc/mysql' ] && mv /etc/mysql{,_bk}
  178. service mysqld start
  179. [ -z "`grep ^'export PATH=' /etc/profile`" ] && echo "export PATH=$mysql_install_dir/bin:\$PATH" >> /etc/profile
  180. [ -n "`grep ^'export PATH=' /etc/profile`" -a -z "`grep $mysql_install_dir /etc/profile`" ] && sed -i "s@^export PATH=\(.*\)@export PATH=$mysql_install_dir/bin:\1@" /etc/profile
  181. . /etc/profile
  182. $mysql_install_dir/bin/mysql -e "grant all privileges on *.* to root@'127.0.0.1' identified by \"$dbrootpwd\" with grant option;"
  183. $mysql_install_dir/bin/mysql -e "grant all privileges on *.* to root@'localhost' identified by \"$dbrootpwd\" with grant option;"
  184. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.user where Password='';"
  185. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.db where User='';"
  186. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.proxies_priv where Host!='localhost';"
  187. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "drop database test;"
  188. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "reset master;"
  189. rm -rf /etc/ld.so.conf.d/{mysql,mariadb,percona}*.conf
  190. echo "$mysql_install_dir/lib" > /etc/ld.so.conf.d/mysql.conf
  191. [ -e "$mysql_install_dir/my.cnf" ] && rm -rf $mysql_install_dir/my.cnf
  192. ldconfig
  193. service mysqld stop
  194. }