mysql-5.7.sh 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. # http://oneinstack.com
  9. # https://github.com/lj2007331/oneinstack
  10. Install_MySQL-5-7()
  11. {
  12. cd $oneinstack_dir/src
  13. [ "$IPADDR_STATE"x == "CN"x ] && { DOWN_ADDR_MYSQL=http://mirrors.linuxeye.com/oneinstack/src; DOWN_ADDR_BOOST=$DOWN_ADDR_MYSQL; } || { DOWN_ADDR_MYSQL=http://cdn.mysql.com/Downloads/MySQL-5.7; DOWN_ADDR_BOOST=http://downloads.sourceforge.net/project/boost/boost/1.59.0; }
  14. src_url=$DOWN_ADDR_BOOST/boost_1_59_0.tar.gz && Download_src
  15. src_url=$DOWN_ADDR_MYSQL/mysql-$mysql_5_7_version.tar.gz && Download_src
  16. id -u mysql >/dev/null 2>&1
  17. [ $? -ne 0 ] && useradd -M -s /sbin/nologin mysql
  18. mkdir -p $mysql_data_dir;chown mysql.mysql -R $mysql_data_dir
  19. tar xzf boost_1_59_0.tar.gz
  20. tar zxf mysql-$mysql_5_7_version.tar.gz
  21. cd mysql-$mysql_5_7_version
  22. if [ "$je_tc_malloc" == '1' ];then
  23. EXE_LINKER="-DCMAKE_EXE_LINKER_FLAGS='-ljemalloc'"
  24. elif [ "$je_tc_malloc" == '2' ];then
  25. EXE_LINKER="-DCMAKE_EXE_LINKER_FLAGS='-ltcmalloc'"
  26. fi
  27. make clean
  28. [ ! -d "$mysql_install_dir" ] && mkdir -p $mysql_install_dir
  29. cmake . -DCMAKE_INSTALL_PREFIX=$mysql_install_dir \
  30. -DMYSQL_DATADIR=$mysql_data_dir \
  31. -DDOWNLOAD_BOOST=1 \
  32. -DWITH_BOOST=../boost_1_59_0 \
  33. -DSYSCONFDIR=/etc \
  34. -DWITH_INNOBASE_STORAGE_ENGINE=1 \
  35. -DWITH_PARTITION_STORAGE_ENGINE=1 \
  36. -DWITH_FEDERATED_STORAGE_ENGINE=1 \
  37. -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
  38. -DWITH_MYISAM_STORAGE_ENGINE=1 \
  39. -DENABLED_LOCAL_INFILE=1 \
  40. -DENABLE_DTRACE=0 \
  41. -DDEFAULT_CHARSET=utf8mb4 \
  42. -DDEFAULT_COLLATION=utf8mb4_general_ci \
  43. -DWITH_EMBEDDED_SERVER=1 \
  44. $EXE_LINKER
  45. make -j `grep processor /proc/cpuinfo | wc -l`
  46. make install
  47. if [ -d "$mysql_install_dir/support-files" ];then
  48. echo "${CSUCCESS}MySQL install successfully! ${CEND}"
  49. cd ..
  50. rm -rf mysql-$mysql_5_7_version
  51. else
  52. rm -rf $mysql_install_dir
  53. echo "${CFAILURE}MySQL install failed, Please contact the author! ${CEND}"
  54. kill -9 $$
  55. fi
  56. /bin/cp $mysql_install_dir/support-files/mysql.server /etc/init.d/mysqld
  57. chmod +x /etc/init.d/mysqld
  58. OS_CentOS='chkconfig --add mysqld \n
  59. chkconfig mysqld on'
  60. OS_Debian_Ubuntu='update-rc.d mysqld defaults'
  61. OS_command
  62. cd ..
  63. # my.cf
  64. [ -d "/etc/mysql" ] && /bin/mv /etc/mysql{,_bk}
  65. cat > /etc/my.cnf << EOF
  66. [client]
  67. port = 3306
  68. socket = /tmp/mysql.sock
  69. default-character-set = utf8mb4
  70. [mysqld]
  71. port = 3306
  72. socket = /tmp/mysql.sock
  73. basedir = $mysql_install_dir
  74. datadir = $mysql_data_dir
  75. pid-file = $mysql_data_dir/mysql.pid
  76. user = mysql
  77. bind-address = 0.0.0.0
  78. server-id = 1
  79. init-connect = 'SET NAMES utf8mb4'
  80. character-set-server = utf8mb4
  81. skip-name-resolve
  82. #skip-networking
  83. back_log = 300
  84. max_connections = 1000
  85. max_connect_errors = 6000
  86. open_files_limit = 65535
  87. table_open_cache = 128
  88. max_allowed_packet = 4M
  89. binlog_cache_size = 1M
  90. max_heap_table_size = 8M
  91. tmp_table_size = 16M
  92. read_buffer_size = 2M
  93. read_rnd_buffer_size = 8M
  94. sort_buffer_size = 8M
  95. join_buffer_size = 8M
  96. key_buffer_size = 4M
  97. thread_cache_size = 8
  98. query_cache_type = 1
  99. query_cache_size = 8M
  100. query_cache_limit = 2M
  101. ft_min_word_len = 4
  102. log_bin = mysql-bin
  103. binlog_format = mixed
  104. expire_logs_days = 30
  105. log_error = $mysql_data_dir/mysql-error.log
  106. slow_query_log = 1
  107. long_query_time = 1
  108. slow_query_log_file = $mysql_data_dir/mysql-slow.log
  109. performance_schema = 0
  110. explicit_defaults_for_timestamp
  111. #lower_case_table_names = 1
  112. skip-external-locking
  113. default_storage_engine = InnoDB
  114. #default-storage-engine = MyISAM
  115. innodb_file_per_table = 1
  116. innodb_open_files = 500
  117. innodb_buffer_pool_size = 64M
  118. innodb_write_io_threads = 4
  119. innodb_read_io_threads = 4
  120. innodb_thread_concurrency = 0
  121. innodb_purge_threads = 1
  122. innodb_flush_log_at_trx_commit = 2
  123. innodb_log_buffer_size = 2M
  124. innodb_log_file_size = 32M
  125. innodb_log_files_in_group = 3
  126. innodb_max_dirty_pages_pct = 90
  127. innodb_lock_wait_timeout = 120
  128. bulk_insert_buffer_size = 8M
  129. myisam_sort_buffer_size = 8M
  130. myisam_max_sort_file_size = 10G
  131. myisam_repair_threads = 1
  132. interactive_timeout = 28800
  133. wait_timeout = 28800
  134. [mysqldump]
  135. quick
  136. max_allowed_packet = 16M
  137. [myisamchk]
  138. key_buffer_size = 8M
  139. sort_buffer_size = 8M
  140. read_buffer = 4M
  141. write_buffer = 4M
  142. EOF
  143. if [ $Mem -gt 1500 -a $Mem -le 2500 ];then
  144. sed -i 's@^thread_cache_size.*@thread_cache_size = 16@' /etc/my.cnf
  145. sed -i 's@^query_cache_size.*@query_cache_size = 16M@' /etc/my.cnf
  146. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 16M@' /etc/my.cnf
  147. sed -i 's@^key_buffer_size.*@key_buffer_size = 16M@' /etc/my.cnf
  148. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 128M@' /etc/my.cnf
  149. sed -i 's@^tmp_table_size.*@tmp_table_size = 32M@' /etc/my.cnf
  150. sed -i 's@^table_open_cache.*@table_open_cache = 256@' /etc/my.cnf
  151. elif [ $Mem -gt 2500 -a $Mem -le 3500 ];then
  152. sed -i 's@^thread_cache_size.*@thread_cache_size = 32@' /etc/my.cnf
  153. sed -i 's@^query_cache_size.*@query_cache_size = 32M@' /etc/my.cnf
  154. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 32M@' /etc/my.cnf
  155. sed -i 's@^key_buffer_size.*@key_buffer_size = 64M@' /etc/my.cnf
  156. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 512M@' /etc/my.cnf
  157. sed -i 's@^tmp_table_size.*@tmp_table_size = 64M@' /etc/my.cnf
  158. sed -i 's@^table_open_cache.*@table_open_cache = 512@' /etc/my.cnf
  159. elif [ $Mem -gt 3500 ];then
  160. sed -i 's@^thread_cache_size.*@thread_cache_size = 64@' /etc/my.cnf
  161. sed -i 's@^query_cache_size.*@query_cache_size = 64M@' /etc/my.cnf
  162. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 64M@' /etc/my.cnf
  163. sed -i 's@^key_buffer_size.*@key_buffer_size = 256M@' /etc/my.cnf
  164. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 1024M@' /etc/my.cnf
  165. sed -i 's@^tmp_table_size.*@tmp_table_size = 128M@' /etc/my.cnf
  166. sed -i 's@^table_open_cache.*@table_open_cache = 1024@' /etc/my.cnf
  167. fi
  168. $mysql_install_dir/bin/mysqld --initialize-insecure --user=mysql --basedir=$mysql_install_dir --datadir=$mysql_data_dir
  169. chown mysql.mysql -R $mysql_data_dir
  170. service mysqld start
  171. [ -z "`grep ^'export PATH=' /etc/profile`" ] && echo "export PATH=$mysql_install_dir/bin:\$PATH" >> /etc/profile
  172. [ -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
  173. . /etc/profile
  174. $mysql_install_dir/bin/mysql -e "grant all privileges on *.* to root@'127.0.0.1' identified by \"$dbrootpwd\" with grant option;"
  175. $mysql_install_dir/bin/mysql -e "grant all privileges on *.* to root@'localhost' identified by \"$dbrootpwd\" with grant option;"
  176. $mysql_install_dir/bin/mysql -uroot -p$dbrootpwd -e "reset master;"
  177. rm -rf /etc/ld.so.conf.d/{mysql,mariadb,percona}*.conf
  178. echo "$mysql_install_dir/lib" > /etc/ld.so.conf.d/mysql.conf
  179. ldconfig
  180. service mysqld stop
  181. }