mariadb-10.0.sh 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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_MariaDB-10-0()
  11. {
  12. cd $oneinstack_dir/src
  13. [ "$IPADDR_STATE"x == "CN"x ] && DOWN_ADDR=http://mirrors.aliyun.com/mariadb || DOWN_ADDR=https://downloads.mariadb.org/f
  14. LIBC_VERSION=`getconf -a | grep GNU_LIBC_VERSION | awk '{print $NF}'`
  15. LIBC_YN=`echo "$LIBC_VERSION < 2.14" | bc`
  16. [ $LIBC_YN == '1' ] && GLIBC_FLAG=linux || GLIBC_FLAG=linux-glibc_214
  17. src_url=$DOWN_ADDR/mariadb-${mariadb_10_0_version}/bintar-${GLIBC_FLAG}-$SYS_BIT_a/mariadb-${mariadb_10_0_version}-${GLIBC_FLAG}-${SYS_BIT_b}.tar.gz && Download_src
  18. id -u mysql >/dev/null 2>&1
  19. [ $? -ne 0 ] && useradd -M -s /sbin/nologin mysql
  20. mkdir -p $mariadb_data_dir;chown mysql.mysql -R $mariadb_data_dir
  21. tar zxf mariadb-${mariadb_10_0_version}-${GLIBC_FLAG}-${SYS_BIT_b}.tar.gz
  22. [ ! -d "$mariadb_install_dir" ] && mkdir -p $mariadb_install_dir
  23. mv mariadb-${mariadb_10_0_version}-linux-${SYS_BIT_b}/* $mariadb_install_dir
  24. if [ "$je_tc_malloc" == '1' ];then
  25. sed -i 's@executing mysqld_safe@executing mysqld_safe\nexport LD_PRELOAD=/usr/local/lib/libjemalloc.so@' $mariadb_install_dir/bin/mysqld_safe
  26. elif [ "$je_tc_malloc" == '2' ];then
  27. sed -i 's@executing mysqld_safe@executing mysqld_safe\nexport LD_PRELOAD=/usr/local/lib/libtcmalloc.so@' $mariadb_install_dir/bin/mysqld_safe
  28. fi
  29. if [ -d "$mariadb_install_dir/support-files" ];then
  30. echo "${CSUCCESS}MariaDB install successfully! ${CEND}"
  31. else
  32. rm -rf $mariadb_install_dir
  33. echo "${CFAILURE}MariaDB install failed, Please contact the author! ${CEND}"
  34. kill -9 $$
  35. fi
  36. /bin/cp $mariadb_install_dir/support-files/mysql.server /etc/init.d/mysqld
  37. sed -i "s@^basedir=.*@basedir=$mariadb_install_dir@" /etc/init.d/mysqld
  38. sed -i "s@^datadir=.*@datadir=$mariadb_data_dir@" /etc/init.d/mysqld
  39. chmod +x /etc/init.d/mysqld
  40. OS_CentOS='chkconfig --add mysqld \n
  41. chkconfig mysqld on'
  42. OS_Debian_Ubuntu='update-rc.d mysqld defaults'
  43. OS_command
  44. cd ..
  45. # my.cf
  46. [ -d "/etc/mysql" ] && /bin/mv /etc/mysql{,_bk}
  47. cat > /etc/my.cnf << EOF
  48. [client]
  49. port = 3306
  50. socket = /tmp/mysql.sock
  51. default-character-set = utf8mb4
  52. [mysqld]
  53. port = 3306
  54. socket = /tmp/mysql.sock
  55. basedir = $mariadb_install_dir
  56. datadir = $mariadb_data_dir
  57. pid-file = $mariadb_data_dir/mysql.pid
  58. user = mysql
  59. bind-address = 0.0.0.0
  60. server-id = 1
  61. init-connect = 'SET NAMES utf8mb4'
  62. character-set-server = utf8mb4
  63. skip-name-resolve
  64. #skip-networking
  65. back_log = 300
  66. max_connections = 1000
  67. max_connect_errors = 6000
  68. open_files_limit = 65535
  69. table_open_cache = 128
  70. max_allowed_packet = 4M
  71. binlog_cache_size = 1M
  72. max_heap_table_size = 8M
  73. tmp_table_size = 16M
  74. read_buffer_size = 2M
  75. read_rnd_buffer_size = 8M
  76. sort_buffer_size = 8M
  77. join_buffer_size = 8M
  78. key_buffer_size = 4M
  79. thread_cache_size = 8
  80. query_cache_type = 1
  81. query_cache_size = 8M
  82. query_cache_limit = 2M
  83. ft_min_word_len = 4
  84. log_bin = mysql-bin
  85. binlog_format = mixed
  86. expire_logs_days = 30
  87. log_error = $mariadb_data_dir/mysql-error.log
  88. slow_query_log = 1
  89. long_query_time = 1
  90. slow_query_log_file = $mariadb_data_dir/mysql-slow.log
  91. performance_schema = 0
  92. #lower_case_table_names = 1
  93. skip-external-locking
  94. default_storage_engine = InnoDB
  95. #default-storage-engine = MyISAM
  96. innodb_file_per_table = 1
  97. innodb_open_files = 500
  98. innodb_buffer_pool_size = 64M
  99. innodb_write_io_threads = 4
  100. innodb_read_io_threads = 4
  101. innodb_thread_concurrency = 0
  102. innodb_purge_threads = 1
  103. innodb_flush_log_at_trx_commit = 2
  104. innodb_log_buffer_size = 2M
  105. innodb_log_file_size = 32M
  106. innodb_log_files_in_group = 3
  107. innodb_max_dirty_pages_pct = 90
  108. innodb_lock_wait_timeout = 120
  109. bulk_insert_buffer_size = 8M
  110. myisam_sort_buffer_size = 8M
  111. myisam_max_sort_file_size = 10G
  112. myisam_repair_threads = 1
  113. interactive_timeout = 28800
  114. wait_timeout = 28800
  115. [mysqldump]
  116. quick
  117. max_allowed_packet = 16M
  118. [myisamchk]
  119. key_buffer_size = 8M
  120. sort_buffer_size = 8M
  121. read_buffer = 4M
  122. write_buffer = 4M
  123. EOF
  124. if [ $Mem -gt 1500 -a $Mem -le 2500 ];then
  125. sed -i 's@^thread_cache_size.*@thread_cache_size = 16@' /etc/my.cnf
  126. sed -i 's@^query_cache_size.*@query_cache_size = 16M@' /etc/my.cnf
  127. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 16M@' /etc/my.cnf
  128. sed -i 's@^key_buffer_size.*@key_buffer_size = 16M@' /etc/my.cnf
  129. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 128M@' /etc/my.cnf
  130. sed -i 's@^tmp_table_size.*@tmp_table_size = 32M@' /etc/my.cnf
  131. sed -i 's@^table_open_cache.*@table_open_cache = 256@' /etc/my.cnf
  132. elif [ $Mem -gt 2500 -a $Mem -le 3500 ];then
  133. sed -i 's@^thread_cache_size.*@thread_cache_size = 32@' /etc/my.cnf
  134. sed -i 's@^query_cache_size.*@query_cache_size = 32M@' /etc/my.cnf
  135. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 32M@' /etc/my.cnf
  136. sed -i 's@^key_buffer_size.*@key_buffer_size = 64M@' /etc/my.cnf
  137. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 512M@' /etc/my.cnf
  138. sed -i 's@^tmp_table_size.*@tmp_table_size = 64M@' /etc/my.cnf
  139. sed -i 's@^table_open_cache.*@table_open_cache = 512@' /etc/my.cnf
  140. elif [ $Mem -gt 3500 ];then
  141. sed -i 's@^thread_cache_size.*@thread_cache_size = 64@' /etc/my.cnf
  142. sed -i 's@^query_cache_size.*@query_cache_size = 64M@' /etc/my.cnf
  143. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 64M@' /etc/my.cnf
  144. sed -i 's@^key_buffer_size.*@key_buffer_size = 256M@' /etc/my.cnf
  145. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 1024M@' /etc/my.cnf
  146. sed -i 's@^tmp_table_size.*@tmp_table_size = 128M@' /etc/my.cnf
  147. sed -i 's@^table_open_cache.*@table_open_cache = 1024@' /etc/my.cnf
  148. fi
  149. $mariadb_install_dir/scripts/mysql_install_db --user=mysql --basedir=$mariadb_install_dir --datadir=$mariadb_data_dir
  150. chown mysql.mysql -R $mariadb_data_dir
  151. service mysqld start
  152. [ -z "`grep ^'export PATH=' /etc/profile`" ] && echo "export PATH=$mariadb_install_dir/bin:\$PATH" >> /etc/profile
  153. [ -n "`grep ^'export PATH=' /etc/profile`" -a -z "`grep $mariadb_install_dir /etc/profile`" ] && sed -i "s@^export PATH=\(.*\)@export PATH=$mariadb_install_dir/bin:\1@" /etc/profile
  154. . /etc/profile
  155. $mariadb_install_dir/bin/mysql -e "grant all privileges on *.* to root@'127.0.0.1' identified by \"$dbrootpwd\" with grant option;"
  156. $mariadb_install_dir/bin/mysql -e "grant all privileges on *.* to root@'localhost' identified by \"$dbrootpwd\" with grant option;"
  157. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.user where Password='';"
  158. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.db where User='';"
  159. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.proxies_priv where Host!='localhost';"
  160. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "drop database test;"
  161. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "reset master;"
  162. rm -rf /etc/ld.so.conf.d/{mysql,mariadb,percona}*.conf
  163. echo "$mariadb_install_dir/lib" > /etc/ld.so.conf.d/mariadb.conf
  164. ldconfig
  165. service mysqld stop
  166. }