mariadb-5.5.sh 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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-5-5()
  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_5_version}/bintar-${GLIBC_FLAG}-$SYS_BIT_a/mariadb-${mariadb_5_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_5_version}-${GLIBC_FLAG}-${SYS_BIT_b}.tar.gz
  22. [ ! -d "$mariadb_install_dir" ] && mkdir -p $mariadb_install_dir
  23. mv mariadb-${mariadb_5_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. cat > /etc/my.cnf << EOF
  47. [client]
  48. port = 3306
  49. socket = /tmp/mysql.sock
  50. default-character-set = utf8mb4
  51. [mysqld]
  52. port = 3306
  53. socket = /tmp/mysql.sock
  54. basedir = $mariadb_install_dir
  55. datadir = $mariadb_data_dir
  56. pid-file = $mariadb_data_dir/mysql.pid
  57. user = mysql
  58. bind-address = 0.0.0.0
  59. server-id = 1
  60. init-connect = 'SET NAMES utf8mb4'
  61. character-set-server = utf8mb4
  62. skip-name-resolve
  63. #skip-networking
  64. back_log = 300
  65. max_connections = 1000
  66. max_connect_errors = 6000
  67. open_files_limit = 65535
  68. table_open_cache = 128
  69. max_allowed_packet = 4M
  70. binlog_cache_size = 1M
  71. max_heap_table_size = 8M
  72. tmp_table_size = 16M
  73. read_buffer_size = 2M
  74. read_rnd_buffer_size = 8M
  75. sort_buffer_size = 8M
  76. join_buffer_size = 8M
  77. key_buffer_size = 4M
  78. thread_cache_size = 8
  79. query_cache_type = 1
  80. query_cache_size = 8M
  81. query_cache_limit = 2M
  82. ft_min_word_len = 4
  83. log_bin = mysql-bin
  84. binlog_format = mixed
  85. expire_logs_days = 30
  86. log_error = $mariadb_data_dir/mysql-error.log
  87. slow_query_log = 1
  88. long_query_time = 1
  89. slow_query_log_file = $mariadb_data_dir/mysql-slow.log
  90. performance_schema = 0
  91. #lower_case_table_names = 1
  92. skip-external-locking
  93. default_storage_engine = InnoDB
  94. #default-storage-engine = MyISAM
  95. innodb_file_per_table = 1
  96. innodb_open_files = 500
  97. innodb_buffer_pool_size = 64M
  98. innodb_write_io_threads = 4
  99. innodb_read_io_threads = 4
  100. innodb_thread_concurrency = 0
  101. innodb_purge_threads = 1
  102. innodb_flush_log_at_trx_commit = 2
  103. innodb_log_buffer_size = 2M
  104. innodb_log_file_size = 32M
  105. innodb_log_files_in_group = 3
  106. innodb_max_dirty_pages_pct = 90
  107. innodb_lock_wait_timeout = 120
  108. bulk_insert_buffer_size = 8M
  109. myisam_sort_buffer_size = 8M
  110. myisam_max_sort_file_size = 10G
  111. myisam_repair_threads = 1
  112. interactive_timeout = 28800
  113. wait_timeout = 28800
  114. [mysqldump]
  115. quick
  116. max_allowed_packet = 16M
  117. [myisamchk]
  118. key_buffer_size = 8M
  119. sort_buffer_size = 8M
  120. read_buffer = 4M
  121. write_buffer = 4M
  122. EOF
  123. if [ $Mem -gt 1500 -a $Mem -le 2500 ];then
  124. sed -i 's@^thread_cache_size.*@thread_cache_size = 16@' /etc/my.cnf
  125. sed -i 's@^query_cache_size.*@query_cache_size = 16M@' /etc/my.cnf
  126. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 16M@' /etc/my.cnf
  127. sed -i 's@^key_buffer_size.*@key_buffer_size = 16M@' /etc/my.cnf
  128. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 128M@' /etc/my.cnf
  129. sed -i 's@^tmp_table_size.*@tmp_table_size = 32M@' /etc/my.cnf
  130. sed -i 's@^table_open_cache.*@table_open_cache = 256@' /etc/my.cnf
  131. elif [ $Mem -gt 2500 -a $Mem -le 3500 ];then
  132. sed -i 's@^thread_cache_size.*@thread_cache_size = 32@' /etc/my.cnf
  133. sed -i 's@^query_cache_size.*@query_cache_size = 32M@' /etc/my.cnf
  134. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 32M@' /etc/my.cnf
  135. sed -i 's@^key_buffer_size.*@key_buffer_size = 64M@' /etc/my.cnf
  136. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 512M@' /etc/my.cnf
  137. sed -i 's@^tmp_table_size.*@tmp_table_size = 64M@' /etc/my.cnf
  138. sed -i 's@^table_open_cache.*@table_open_cache = 512@' /etc/my.cnf
  139. elif [ $Mem -gt 3500 ];then
  140. sed -i 's@^thread_cache_size.*@thread_cache_size = 64@' /etc/my.cnf
  141. sed -i 's@^query_cache_size.*@query_cache_size = 64M@' /etc/my.cnf
  142. sed -i 's@^myisam_sort_buffer_size.*@myisam_sort_buffer_size = 64M@' /etc/my.cnf
  143. sed -i 's@^key_buffer_size.*@key_buffer_size = 256M@' /etc/my.cnf
  144. sed -i 's@^innodb_buffer_pool_size.*@innodb_buffer_pool_size = 1024M@' /etc/my.cnf
  145. sed -i 's@^tmp_table_size.*@tmp_table_size = 128M@' /etc/my.cnf
  146. sed -i 's@^table_open_cache.*@table_open_cache = 1024@' /etc/my.cnf
  147. fi
  148. $mariadb_install_dir/scripts/mysql_install_db --user=mysql --basedir=$mariadb_install_dir --datadir=$mariadb_data_dir
  149. chown mysql.mysql -R $mariadb_data_dir
  150. service mysqld start
  151. [ -z "`grep ^'export PATH=' /etc/profile`" ] && echo "export PATH=$mariadb_install_dir/bin:\$PATH" >> /etc/profile
  152. [ -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
  153. . /etc/profile
  154. $mariadb_install_dir/bin/mysql -e "grant all privileges on *.* to root@'127.0.0.1' identified by \"$dbrootpwd\" with grant option;"
  155. $mariadb_install_dir/bin/mysql -e "grant all privileges on *.* to root@'localhost' identified by \"$dbrootpwd\" with grant option;"
  156. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.user where Password='';"
  157. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.db where User='';"
  158. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "delete from mysql.proxies_priv where Host!='localhost';"
  159. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "drop database test;"
  160. $mariadb_install_dir/bin/mysql -uroot -p$dbrootpwd -e "reset master;"
  161. sed -i "s@^db_install_dir.*@db_install_dir=$mariadb_install_dir@" options.conf
  162. sed -i "s@^db_data_dir.*@db_data_dir=$mariadb_data_dir@" options.conf
  163. service mysqld stop
  164. }